/* Modal Content Styling */
.modal-page-content {
    line-height: 1.8;
    color: #333;
}

.modal-page-content h1,
.modal-page-content h2,
.modal-page-content h3,
.modal-page-content h4,
.modal-page-content h5,
.modal-page-content h6 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #222;
}

.modal-page-content h1 {
    font-size: 2rem;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 0.5rem;
}

.modal-page-content h2 {
    font-size: 1.75rem;
    margin-top: 2rem;
}

.modal-page-content h3 {
    font-size: 1.5rem;
}

.modal-page-content p {
    margin-bottom: 1rem;
    text-align: justify;
}

.modal-page-content ul,
.modal-page-content ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.modal-page-content li {
    margin-bottom: 0.5rem;
}

.modal-page-content a {
    color: #2563eb;
    text-decoration: underline;
}

.modal-page-content a:hover {
    color: #1d4ed8;
}

.modal-page-content blockquote {
    border-left: 4px solid #2563eb;
    padding-left: 1rem;
    margin: 1rem 0;
    font-style: italic;
    color: #666;
}

.modal-page-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.modal-page-content table th,
.modal-page-content table td {
    padding: 0.75rem;
    border: 1px solid #e5e7eb;
    text-align: left;
}

.modal-page-content table th {
    background-color: #f9fafb;
    font-weight: 600;
}

/* Ensure modals are scrollable and properly sized */
.modal-dialog-scrollable .modal-body {
    max-height: calc(100vh - 200px);
    overflow-y: auto;
}

/* Loading spinner styling */
.modal-body .spinner-border {
    width: 3rem;
    height: 3rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .modal-page-content {
        font-size: 0.9rem;
    }
    
    .modal-page-content h1 {
        font-size: 1.5rem;
    }
    
    .modal-page-content h2 {
        font-size: 1.25rem;
    }
    
    .modal-page-content h3 {
        font-size: 1.1rem;
    }
}

