/* ---------- СБРОС ---------- */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    background:#f4f6f9;
    color:#222;
    min-height:100vh;
}

/* ---------- СТАРТОВЫЙ ЭКРАН ---------- */

#startScreen{
    width:420px;
    margin:80px auto;
    background:#fff;
    padding:35px;
    border-radius:12px;
    box-shadow:0 8px 30px rgba(0,0,0,.12);
    text-align:center;
}

#startScreen h1{
    margin-bottom:15px;
    font-size:28px;
}

#startScreen p{
    margin-bottom:20px;
    color:#666;
}

/* ---------- ВВОД ---------- */

input,
select{
    width:100%;
    padding:12px 15px;
    margin-bottom:15px;
    border:1px solid #d7d7d7;
    border-radius:8px;
    font-size:16px;
    outline:none;
    transition:.2s;
}

input:focus,
select:focus{
    border-color:#1976d2;
}

/* ---------- КНОПКИ ---------- */

button{
    width:100%;
    padding:13px;
    border:none;
    border-radius:8px;
    background:#1976d2;
    color:#fff;
    font-size:16px;
    cursor:pointer;
    transition:.2s;
    margin-bottom:10px;
}

button:hover{
    background:#1565c0;
}

#adminBtn{
    background:#555;
}

#adminBtn:hover{
    background:#333;
}

/* ---------- ОКНО АДМИНА ---------- */

#adminLogin{
    position:fixed;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:380px;
    background:#fff;
    padding:30px;
    border-radius:12px;
    box-shadow:0 10px 35px rgba(0,0,0,.25);
    z-index:1000;
}

#adminLogin h2{
    margin-bottom:20px;
    text-align:center;
}

/* ---------- РАБОЧЕЕ ОКНО ---------- */

#workScreen{
    width:95%;
    max-width:1300px;
    margin:30px auto;
}

/* ---------- ШАПКА ---------- */

header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:#1976d2;
    color:#fff;
    padding:20px;
    border-radius:10px;
}

header h2{
    font-size:28px;
}

header p{
    margin-top:5px;
    font-size:15px;
}

/* ---------- БЛОК ДОБАВЛЕНИЯ ---------- */

h3{
    margin:25px 0 15px;
}

#addVisitor{
    width:220px;
}

/* ---------- ТАБЛИЦА ---------- */

table{
    width:100%;
    border-collapse:collapse;
    margin-top:25px;
    background:#fff;
    border-radius:10px;
    overflow:hidden;
}

thead{
    background:#1976d2;
    color:#fff;
}

th,
td{
    padding:14px;
    border-bottom:1px solid #ececec;
    text-align:left;
}

tbody tr:hover{
    background:#f2f7ff;
}

/* ---------- ЛИНИЯ ---------- */

hr{
    margin:25px 0;
    border:none;
    border-top:1px solid #ddd;
}

/* ---------- МОБИЛЬНЫЕ ---------- */

@media(max-width:768px){

    #startScreen{
        width:95%;
        margin-top:40px;
    }

    header{
        flex-direction:column;
        align-items:flex-start;
        gap:15px;
    }

    #adminLogin{
        width:95%;
    }

}