/* Info Modal */
.info-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;
}

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

.info-modal-content {
    background-color: #ffffff;
    border-radius: 0.5rem;
    padding: 2rem;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
}

.info-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;
}

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

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

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

.info-content p {
    margin: 0 0 1rem 0;
}

.info-content ul {
    margin: 0.5rem 0 1rem 2rem;
    padding: 0;
    list-style-type: disc;
}

.info-content li {
    margin: 0.5rem 0;
}

.info-content strong {
    font-weight: 700;
}

.info-footer {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
    font-size: 0.875rem;
    color: #6b7280;
}

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

