/* Základní nastavení */
* {
    box-sizing: border-box;
}

.layout {
    display: flex;
    min-height: 100vh;
}



/* Hlavní obsah */
.content {
    flex: 1;
    padding: 40px;
    max-width: 900px;
}

.top-logo img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

/* Karta formuláře */
.form-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.section {
    margin-bottom: 30px;
}

.section h2 {
    color: #0056b3;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    font-size: 1.2rem;
}

/* Stylování přepínacích tlačítek */
.toggle-buttons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.radio-btn {
    flex: 1;
    cursor: pointer;
}

.radio-btn input {
    display: none; /* Skryje ošklivé puntíky */
}

.radio-btn span {
    display: block;
    padding: 15px;
    text-align: center;
    background: #f8f9fa;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-weight: bold;
    transition: 0.3s;
}

.radio-btn input:checked + span {
    background: #0056b3;
    color: white;
    border-color: #0056b3;
}


label {
    flex: 1;
    display: flex;
    flex-direction: column;
    font-weight: bold;
}

input, select, textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-top: 5px;
}

.btn {
    background: #28a745;
    color: white;
    border: none;
    padding: 15px;
    width: 100%;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
}

.btn:hover {
    background: #218838;
}

/* Responzivita pro mobily */
@media (max-width: 768px) {
    .layout { flex-direction: column; }
    .left-panel { width: 100%; }
    .row { flex-direction: column; gap: 0; }
}
