body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    background-image: url('../images/backdrop.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    max-width: 1184px;
    padding: 0;
    margin: 0 auto;
    width: 100%;
    height: auto;
    min-height: 864px;
    box-shadow: 0 0 20px 10px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
}

main {
    flex: 1;
}

.bg-light {
    background-color: rgba(248, 249, 250, 0.8) !important;
}

.prijslijst {
    margin: 20px auto;
    width: 100%;
    max-width: 900px;
    overflow-x: auto;
}

@media (min-width: 992px) {
    .prijslijst {
        margin: 150px auto 0;
        width: 900px;
    }
}

.prijslijst table {
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    background-color: rgba(255, 182, 193, 0.3);
    font-family: 'Arial', sans-serif;
	
}

.prijslijst th {
    background-color: rgba(255, 182, 193, 0.45);
    color: #333;
    padding: 12px;
    text-align: left;
    font-weight: bold;
	    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.9);
}

.prijslijst td {
    padding: 12px;
    border-bottom: 1px solid #ddd;
    color: white;
    background-color: rgba(60, 60, 60, 0.45);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.9);
}

.prijslijst tbody tr:last-child td {
    border-bottom: none;
}

.fancy-font {
    font-family: 'Dancing Script', cursive;
    color: #111;
    font-size: 150%;
    font-weight: bold;
    text-align: center;
    max-width: 50ch;
    margin: 0 auto;
    word-wrap: break-word;
}

.slogan-container {
    text-align: center;
    padding: 30px 0;
    margin-bottom: 20px;
    background-color: transparent;
    border-radius: 20px;
	    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.9);
}

.openingstijden-container {
    text-align: center;
    padding: 20px 0;
    margin-top: 30px;
    background-color: transparent;
    border-radius: 20px;
	    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.9);
}

.openingstijden-text {
    font-family: 'Arial', sans-serif;
    color: #333;
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
}

.add-price-btn, .add-day-btn, .remove-price-btn, .add-opening-btn, .remove-opening-btn {
    transition: all 0.3s ease;
}

.add-price-btn, .add-opening-btn {
    background-color: #28a745;
    color: white;
    padding: 8px 15px;
    font-weight: bold;
    border: 2px solid #1e7e34;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.add-price-btn:hover, .add-day-btn:hover, .add-opening-btn:hover {
    transform: scale(1.05);
    background-color: #218838;
}

.remove-price-btn:hover, .remove-opening-btn:hover {
    transform: scale(1.1);
}

.add-row {
    background-color: rgba(255, 255, 255, 0.2) !important;
}
