:root {
    --emb-blue: #003366; /* Tmavá modrá EMB */
    --emb-light-blue: #0056b3;
    --emb-bg: #f4f7f6;
    --emb-white: #ffffff;
    --emb-grey: #e9ecef;
    --text-color: #333;
}

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--emb-bg);
    color: var(--text-color);
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

.container {
    background: var(--emb-white);
    width: 100%;
    max-width: 600px;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    position: relative; /* Pro patičku */
}

h1, h2, h3 { color: var(--emb-blue); text-align: center; margin-top: 0; }
.logo { text-align: center; font-size: 24px; font-weight: 800; letter-spacing: 1px; color: var(--emb-blue); margin-bottom: 30px; text-transform: uppercase; border-bottom: 2px solid var(--emb-blue); display: inline-block; padding-bottom: 5px;}
.logo-wrapper { text-align: center; }

/* Formuláře */
input[type="text"], input[type="password"], textarea {
    width: 100%;
    padding: 15px;
    margin: 10px 0 20px 0;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-sizing: border-box;
    font-size: 16px;
    transition: border 0.3s;
}

input:focus, textarea:focus { border-color: var(--emb-light-blue); outline: none; }

button {
    background-color: var(--emb-blue);
    color: white;
    border: none;
    padding: 15px;
    width: 100%;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background 0.3s;
}

button:hover { background-color: var(--emb-light-blue); }

/* --- HLASOVACÍ POLOŽKY (OPRAVENO) --- */
.proposal-item {
    background: var(--emb-white);
    border: 1px solid #ddd;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between; /* Text vlevo, zbytek vpravo */
    align-items: center;
    cursor: pointer;
    transition: all 0.2s;
}

.proposal-item:hover {
    border-color: var(--emb-blue);
    background: #fbfbfb;
}

/* Pravá část v řádku */
.proposal-right {
    display: flex;
    align-items: center;
    gap: 15px; 
}

/* Štítek s počtem hlasů */
.vote-badge {
    background-color: #f1f3f5;
    color: #666;
    font-size: 0.85em;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: bold;
    white-space: nowrap;
}

/* Grafické výsledky */
.result-box { margin-bottom: 20px; }
.result-header { display: flex; justify-content: space-between; margin-bottom: 5px; font-weight: 500; }
.progress-bg { background-color: var(--emb-grey); border-radius: 10px; height: 12px; overflow: hidden; }
.progress-bar { background-color: var(--emb-light-blue); height: 100%; width: 0; transition: width 1s ease-in-out; border-radius: 10px; }

/* Alerty */
.alert { padding: 15px; border-radius: 8px; margin-bottom: 20px; text-align: center; font-weight: 500; }
.alert-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }

/* --- PATIČKA (NOVÉ) --- */
.footer-info {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    text-align: center;
    font-size: 0.9em;
    color: #777;
    line-height: 1.6;
}
.footer-info a {
    color: var(--emb-blue);
    text-decoration: none;
    font-weight: 600;
}
.footer-info a:hover {
    text-decoration: underline;
}
