/* Report Button Styles */
.report-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #e74c3c;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 0.25rem;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.4);
    transition: all 0.3s ease;
}

.report-btn:hover {
    background-color: #c0392b;
    box-shadow: 0 6px 16px rgba(231, 76, 60, 0.5);
    transform: translateY(-2px);
}

.report-btn svg {
    width: 18px;
    height: 18px;
}

/* Modal Styles */
.report-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.report-modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    animation: slideDown 0.3s;
    position: relative;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.report-close {
    color: #aaa;
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.report-close:hover,
.report-close:focus {
    color: #000;
}

.report-modal-content h2 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #333;
    font-size: 24px;
}

#report-form textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, sans-serif;
    font-size: 14px;
    resize: vertical;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

#report-form textarea:focus {
    outline: none;
    border-color: #e74c3c;
}

.report-char-count {
    text-align: right;
    font-size: 12px;
    color: #666;
    margin-top: 5px;
    margin-bottom: 15px;
}

.report-submit-btn {
    width: 100%;
    background-color: #e74c3c;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.report-submit-btn:hover {
    background-color: #c0392b;
}

.report-submit-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.report-success {
    text-align: center;
    padding: 20px;
}

.report-success p {
    color: #27ae60;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 600px) {
    .report-modal-content {
        width: 95%;
        margin: 20% auto;
        padding: 20px;
    }
    
    .report-btn {
        padding: 10px 16px;
        font-size: 13px;
    }
}