body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #121212;
    color: #fff;
    padding-bottom: 90px;
}

.timetable {
    width: 100%;
    max-width: 800px;
    margin: auto;
    border-collapse: collapse;
    background-color: #fff;
    padding: 0;
}

.row {
    display: flex;
    width: 100%;
    margin: 0;
    padding: 0;
}

.cell {
    padding: 10px;
    border: 1px solid #444;
    text-align: center;
    flex: 1;
}

.header {
    background-color: #333;
    font-weight: bold;
}

.iceberg-header {
    color: white;
    text-shadow:
        -1px -1px 0 #2e3a83,
        1px -1px 0 #2e3a83,
        -1px 1px 0 #2e3a83,
        1px 1px 0 #2e3a83;
}

.casino-header {
    color: white;
    text-shadow:
        -1px -1px 0 #af3e1c,
        1px -1px 0 #af3e1c,
        -1px 1px 0 #af3e1c,
        1px 1px 0 #af3e1c;
}

.stage {
    background-color: #555;
}

.empty {
    background-color: #222;
}

.time {
    background-color: #222;
    flex-basis: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.iceberg {
    background-color: #2e3a83;
}

.casino {
    background-color: #af3e1c;
}

.selected {
    background-color: #27c048 !important;
    color: #000;
}

button {
    margin-top: 20px;
    padding: 15px 20px;
    background-color: #065a32;
    border: none;
    color: #bbe0bd;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
}

button:hover {
    background-color: #1d412c;
}

.button-container {
    position: fixed;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    z-index: 1000;
    display: flex;
    justify-content: center;

}
