﻿/*:root {
    --global-color: rgb(19,105,153);*/ /*gray rgb(195,195,195);*/ /*Dark blue CVI color*/
/*}*/

    body {
    font-family: Arial, sans-serif;
}

.modal {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

    .modal.hidden {
        display: none;
    }

.modal-content {
    background: white;
    padding: 2em;
    border-radius: 10px;
    width: 100%;
    max-width: 400px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5em;
    cursor: pointer;
}

.question {
    margin-bottom: 1em;
}

label {
    display: block;
    margin-bottom: 0.3em;
    font-weight: bold;
}

input, select {
    width: 100%;
    padding: 0.5em;
    border-radius: 5px;
    border: 1px solid #ccc;
}

/* Sticky reopen button */
.sticky-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--global-color);
    color: white;
    border: none;
    padding: 0.8em 1.2em;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    cursor: pointer;
    z-index: 9999;
    font-weight: bold;
    transition: background 0.3s;
}

    .sticky-btn:hover {
        background: var(--global-color);
    }