﻿.timeout-modal {
    display: none;
    position: fixed;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 420px;
    background: white;
    border: 1px solid #a0a0a0;
    border-radius: 4px;
    box-shadow: 0 0 15px rgba(0,0,0,0.35);
    z-index: 99999;
    font-family: Arial, sans-serif
}

.timeout-header {
    background: #f1f1f1;
    padding: 10px;
    font-weight: bold;
    border-bottom: 1px solid #ccc;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.timeout-close {
    border: none;
    background: transparent;
    font-size: 16px;
    cursor: pointer
}

.timeout-body {
    padding: 20px;
    font-size: 14px;
    color: #333;
    text-align: center
}

.timeout-footer {
    text-align: right;
    padding: 10px 20px 20px
}

.timeout-ok {
    padding: 6px 15px;
    cursor: pointer
}
