.product-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 300px;
}

.toggle-buttons {
    display: flex;
    gap: 10px;
}

.toggle-buttons input[type="radio"] {
    display: none; /* Verberg de standaard radio-knoppen */
}

.toggle-buttons label {
    padding: 10px 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: white;
    cursor: pointer;
    font-weight: bold;
    color: black;
    text-align: center;
}

/* Stijl voor geselecteerde knop */
.toggle-buttons input[type="radio"]{
    color:white;
}
#keuze-ja:checked + label{
    background-color: green;
    color: white;
    border-color: green;
}
#keuze-nee:checked + label{
    background-color: red;
    color: white;
    border-color: red;
}

.product-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ccc;
}

.product-container img {
    max-width: 300px;
    height: auto;
    border-radius: 8px;
}

.product-options label {
    font-weight: bold;
}

.product-options input[type="number"] {
    width: 50px;
    padding: 5px;
}

.product-options button {
    padding: 10px 20px;
    background-color: green;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.product-options button:hover {
    background-color: #45a049;
}

h2 {
    text-align: center;
}

.cart-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.cart-container img {
    max-width: 300px;
    height: auto;
    border-radius: 8px;
}

.cart-details {
    margin-top: 20px;
    text-align: center;
}

.cart-details p {
    margin: 5px 0;
    font-size: 18px;
}

.bets-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Zorg voor 2 kolommen van gelijke breedte */
    gap: 20px; /* Ruimte tussen de bets */
    max-width: 1000px; /* Optioneel: beperkte breedte voor de container */
    margin-top: 10px;
    margin-left: 10%;
}

.bet-container {
    display: inline-block;
    margin-top: 10px;
    margin: 20px auto; /* Ruimte tussen de individuele bets */
    padding: 15px;
    background-color: #fff; /* Witte achtergrond */
    border: 1px solid #ddd; /* Subtiele rand */
    border-radius: 10px; /* Ronde hoeken */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtiele schaduw */
    text-align: left;
    align-items: left;
}

.bet-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr); /* Twee kolommen: afbeelding en tekst */
    gap: 20px; /* Ruimte tussen kolommen */
    align-items: center; /* Centreer items verticaal */
}

.bet-container img {
    max-width: 100%; /* Zorg dat de afbeelding zich aanpast */
    height: auto;
    display: block;
    margin: 0 auto 10px auto; /* Centreer afbeelding en voeg ruimte toe */
}

.bet-container p {
    font-size: 16px;
    color: #333;
    margin: 0px 0;
    line-height: 1.0;
}

.bet-container img {
    border-radius: 8px; /* Maak de afbeelding hoekjes zacht */
    border: 1px solid #ddd;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Schaduw rondom afbeelding */
}

.delete-bet-form {
    display: inline-block;
    margin-top: 10px;
}

.delete-button {
    background-color: #e74c3c; /* Rood, om te waarschuwen dat het een delete-knop is */
    color: white;
    border: none;
    border-radius: 5px;
    padding: 8px 12px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.delete-button:hover {
    background-color: #c0392b; /* Donkerder rood bij hover */
}

.sidebar {
    position: absolute;
    top: 100px;
    right: 20px;
    width: 300px;
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    font-size: 0.9rem;
    line-height: 1.5;
}

.sidebar h3 {
    font-size: 1.2rem;
    color: #c9a458;
    margin-bottom: 10px;
}

.sidebar ul {
    padding-left: 20px;
    list-style: disc;
}

.sidebar li {
    margin-bottom: 10px;
}

.section-title {
    font-family: 'Playfair Display', serif; /* Elegante fontstijl */
    font-size: 2rem; /* Iets kleinere tekst dan de hoofdtitel */
    color: #333; /* Donkere kleur voor contrast */
    text-align: left; /* Links uitlijnen */
    margin-bottom: 20px;
    padding: 5px 10px; /* Optionele padding voor visueel comfort */
    border-bottom: 2px solid #ddd;
}

