﻿/* ========== Columns ========== */
.column {
    min-width: 300px;
    width: 20%;
}

    .column h2 {
        color: #333;
        font-size: 1.8em;
        margin-bottom: 10px;
        text-align: center;
    }

    .column p {
        color: #555;
        font-size: 1em;
        line-height: 1.6;
    }

    .column ul {
        color: #555;
        list-style-type: disc;
        padding-left: 20px;
    }

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    background-color: #fddf89; /* Baby Grace yellow */
    border-bottom: 1px solid #ccc;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
}

.hidden {
    display: none !important;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 29999;
}

.modal-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.modal input,
.modal select,
.modal textarea {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    font-family: 'Segoe UI', sans-serif;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

    .modal input:focus,
    .modal select:focus,
    .modal textarea:focus {
        border-color: #0078D4; /* Microsoft blue */
        outline: none;
    }

.close-button {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 28px;
    color: #666;
    cursor: pointer;
    z-index: 30001;
    user-select: none;
}

.modal-content {
    position: relative; /* This anchors the absolute positioning */
}