/* Reset stylů a základní nastavení */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
    padding: 20px;
}

/* Kontejner */
.container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

/* Hlavičky */
h1, h2, h3 {
    color: #007bff;
    margin-bottom: 10px;
}

h1 {
    text-align: center;
}

/* Formuláře */
.form-group {
    margin-bottom: 15px;
}

label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
input[type="number"],
select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

input:focus, select:focus {
    border-color: #007bff;
    outline: none;
}

/* Košík */
#cart-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

#cart-list li {
    background: #f1f1f1;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Celková cena */
.total-price {
    font-size: 18px;
    font-weight: bold;
    text-align: right;
    margin-top: 10px;
}

/* Tlačítka */
button, .btn {
    display: inline-block;
    background: #007bff;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
    text-decoration: none;
}

button:hover, .btn:hover {
    background: #0056b3;
}

button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* Tlačítko odebrání */
.remove-from-cart {
    background: #dc3545;
    padding: 5px 10px;
    font-size: 14px;
}

.remove-from-cart:hover {
    background: #a71d2a;
}

/* Responsivita */
@media (max-width: 600px) {
    .container {
        padding: 15px;
    }

    button, .btn {
        width: 100%;
        text-align: center;
    }
}
