/* Report Problem Modal - Clean & Zen */
#report-problem-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 100000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#report-problem-modal.is-visible {
    display: flex;
    opacity: 1;
}

.report-modal-content {
    background: #fff;
    width: 90%;
    max-width: 500px;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

#report-problem-modal.is-visible .report-modal-content {
    transform: translateY(0);
}

.report-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.report-modal-header h3 {
    margin: 0;
    font-size: 20px;
    color: #333;
}

.report-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
}

/* Form Styles */
.report-field-group {
    margin-bottom: 15px;
}

.report-label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #444;
}

.report-checkbox-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.report-checkbox-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    cursor: pointer;
}

.report-textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    min-height: 100px;
    font-family: inherit;
    resize: vertical;
}

.report-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.report-submit-btn {
    width: 100%;
    padding: 12px;
    background-color: var(--color-primary, #0A2838);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.report-submit-btn:hover {
    background-color: #0d364b;
}

.report-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Spam Protection */
.d-none-honey {
    display: none !important;
}