
#reportproblem-block {
    max-width: 100%;
    width: 250px;
    min-height: 120px;
    padding: 24px;
    border: 1.5px solid #BBC1C7;
    border-radius: 2px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 16px;
    box-sizing: border-box;
    background-color: #fff;
    margin-bottom: 10px;
}

#reportproblem-block p {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    line-height: 1.5;
    color: #333;
}

#reportproblem-btn {
    width: fit-content;
    min-width: 140px;
    padding: 8px 16px;
    border: 1px solid #BBC1C7;
    border-radius: 2px;
    background-color: #fff;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s, border-color 0.3s;
    margin-top: 8px;
}

#reportproblem-btn:hover {
    background-color: #f0f0f0;
    border-color: #999;
}

#reportproblem-modal {
    position: fixed;
    top:0; left:0; right:0; bottom:0;
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.4s;
}
#reportproblem-modal.hidden { display:none; }

.modal-content {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    width: 400px;
    max-width: 90%;
    animation: scaleIn 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.modal-content h3 {
    margin-top:0;
    color:#007BFF;
}
.modal-content input,
.modal-content textarea {
    width:96% !important;
    margin:8px 0;
    padding:8px;
    border:1px solid #ccc;
    border-radius:6px;
}
.modal-content button {
    background:#007BFF;
    color:white;
    border:none;
    padding:10px;
    border-radius:6px;
    cursor:pointer;
    width:96% !important;
}
.modal-content button:hover {
    background:#0056b3;
}

.close {
    float:right;
    font-size:20px;
    cursor:pointer;
    color:#333;
}

@keyframes fadeIn { from {opacity:0;} to {opacity:1;} }
@keyframes scaleIn { from {transform:scale(0.8);} to {transform:scale(1);} }