/**
 * Modal Styles for Legal Pages and Other Dialogs
 */

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

/* Modal Content Container */
.modal-content {
    background: #1e293b;
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    padding: 2rem;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
}

/* Modal Title */
.modal-title {
    color: #3b82f6;
    margin-bottom: 1.5rem;
}

/* Modal Body Text */
.modal-body {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Modal Sections */
.modal-section-title {
    color: #60a5fa;
    margin-top: 1.5rem;
}

.modal-section-title:first-of-type {
    margin-top: 1rem;
}

/* Modal Footer Note */
.modal-footer-note {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Modal Close Button */
.modal-close-btn {
    margin-top: 1.5rem;
    padding: 0.75rem 1.5rem;
    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
}

.modal-close-btn:hover {
    background: #2563eb;
}

/* Jobs Section Centering */
.jobs-center {
    text-align: center;
    margin-top: 2rem;
}

/* Footer Adjustments */
.footer-version {
    font-size: 0.85em;
    opacity: 0.7;
}
