#report-btn {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(52, 152, 219, 0.2);
}

#report-btn:hover {
    background-color: #2980b9;
    box-shadow: 0 4px 8px rgba(52, 152, 219, 0.3);
}

#report-btn:active {
    transform: translateY(1px);
}

#report-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    max-width: 480px;
    width: 90%;
    display: none;
}

#report-modal.show {
    display: block;
    animation: modalFadeIn 0.25s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -45%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e1e8ed;
}

.modal-header h3 {
    margin: 0;
    font-size: 20px;
    color: #2c3e50;
    font-weight: 600;
}

#close-report-modal {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #95a5a6;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

#close-report-modal:hover {
    color: #3498db;
}

#report-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#report-form input[type="email"],
#report-form input[type="text"],
#report-form select,
#report-form textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.2s ease;
    background-color: white;
    color: #2c3e50;
}

#report-form input[type="email"]:focus,
#report-form input[type="text"]:focus,
#report-form select:focus,
#report-form textarea:focus {
    border-color: #3498db;
    outline: none;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

#report-form textarea {
    min-height: 100px;
    resize: vertical;
    font-family: inherit;
    line-height: 1.5;
}

#report-form select {
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%233498db" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 20px;
    padding-right: 32px;
}

#report-recaptcha-container {
    margin: 5px 0;
}

#submit-report {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(52, 152, 219, 0.2);
    margin-top: 5px;
}

#submit-report:hover {
    background-color: #2980b9;
    box-shadow: 0 4px 8px rgba(52, 152, 219, 0.3);
}

#submit-report:active {
    transform: translateY(1px);
}

#submit-report:disabled {
    background-color: #bdc3c7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.8s linear infinite;
    margin-left: 8px;
    vertical-align: middle;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.report-notification {
    position: fixed;
    top: 16px;
    right: 16px;
    padding: 12px 20px;
    border-radius: 4px;
    background-color: white;
    color: #2c3e50;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 999999;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    max-width: 380px;
    font-size: 14px;
}

.report-notification.error {
    border-left: 3px solid #e74c3c;
}

.report-notification.success {
    border-left: 3px solid #2ecc71;
}

.report-notification.show {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 480px) {
    #report-modal {
        width: 95%;
        padding: 20px;
    }

    .modal-header h3 {
        font-size: 18px;
    }

    #report-form input[type="email"],
    #report-form input[type="text"],
    #report-form select,
    #report-form textarea {
        font-size: 14px;
        padding: 8px 10px;
    }

    #submit-report {
        font-size: 14px;
        padding: 10px 16px;
    }

    #report-btn {
        font-size: 13px;
        padding: 8px 16px;
    }
}