/* Report Modal - Same style as Info Modal */
.report-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    direction: rtl;
}

.report-modal.hidden {
    display: none;
}

.report-modal-content {
    background-color: #ffffff;
    border-radius: 0.5rem;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    text-align: center;
}

.report-close-button {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: #6b7280;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.report-close-button:hover {
    color: #141c3a;
}

.report-title {
    color: #141c3a;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 1.5rem 0;
    text-align: center;
    padding-top: 1rem;
}

.report-content {
    color: #141c3a;
    font-size: 1rem;
    line-height: 1.75;
}

.report-content p {
    margin: 0 0 2rem 0;
}

.report-button-container {
    margin-top: 1.5rem;
}

.report-action-button {
    display: inline-block;
    background-color: #1e40af;
    color: #ffffff;
    padding: 0.75rem 2rem;
    border-radius: 0.375rem;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.2s;
    cursor: pointer;
}

.report-action-button:hover {
    background-color: #1e3a8a;
}

/* Responsive */
@media (max-width: 767px) {
    .report-modal-content {
        padding: 1.5rem;
        max-width: 95%;
    }
    
    .report-title {
        font-size: 1.5rem;
        padding-top: 0.5rem;
    }
    
    .report-content {
        font-size: 0.875rem;
    }
    
    .report-close-button {
        top: 0.75rem;
        right: 0.75rem;
        font-size: 1.75rem;
    }
    
    .report-action-button {
        padding: 0.625rem 1.5rem;
        font-size: 0.875rem;
    }
}

