/* ====== ZÁKLADNÍ NASTAVENÍ ====== */
body {
    font-family: Arial, sans-serif;
    background: #0A3D91;
    color: white;
    margin: 0;
    padding: 0;
    text-align: center;
}

/* ====== HLAVNÍ NADPISY ====== */
h1, h2, h3 {
    margin-top: 30px;
    font-weight: 300;
}

/* ====== KONTEJNER PRO FORMULÁŘE ====== */
.form-box {
    width: 90%;
    max-width: 500px;
    margin: 40px auto;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 12px;
    backdrop-filter: blur(4px);
}

/* ====== INPUTY ====== */
input[type="text"],
input[type="password"],
input[type="number"] {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    border: none;
    margin-top: 5px;
    margin-bottom: 20px;
    font-size: 16px;
}

/* ====== TLAČÍTKA ====== */
button {
    width: 100%;
    padding: 14px;
    background: white;
    color: #0A3D91;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
}

button:hover {
    background: #e6e6e6;
}

/* ====== ODKAZY ====== */
a {
    color: white;
    font-size: 18px;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* ====== TABULKY ====== */
table {
    width: 95%;
    margin: 20px auto;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.1);
}

th, td {
    padding: 12px;
    border: 1px solid white;
}

th {
    background: rgba(255, 255, 255, 0.2);
}

/* ====== DASHBOARD SEKCE ====== */
.dashboard-box {
    width: 90%;
    max-width: 700px;
    margin: 20px auto;
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 12px;
}
