body {
    position: relative;
}

.modal {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    border-radius: 5px;
    text-align: center;
    position: relative;
    width: 400px;
    margin: auto;
}

#closeModal {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 18px;
    font-family: 'Branding';
    font-weight: bold;
    color: #ff8400;
}
#closeModal:hover {
    color:#ff1100;
}

.control-group {
    position: absolute;
    top: 205px;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgb(255 255 255 / 0%);
    border-radius: 5px;
    text-align: center;
}

.controls {
    margin: 10px;
}

.controls input {
    width: 250px;
    padding: 2px 10px;
    font-family: "Branding";
    padding: 3px 10px;
}

#confirmExit {
    background: #ff8500;
    color: white;
    padding: 4px 13px;
    font-size: 22px;
    cursor: pointer;
    margin: 10px 0 0 0;
    font-family: "Branding";
    letter-spacing: 3px;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

#confirmExit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.5);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

#confirmExit:hover {
    background: #db7200;
}

