/* Basic styles for the tabs */
.tabs-container {
    margin: 0 auto;
    font-family: Arial, sans-serif;
}

.tabs {
    border-bottom: 1px solid #ddd;
}

.tab-button {
    flex: 1;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.tab-button.active {
    bbackground-color: #95b75c;
    background-color: #549D8B;
    font-size: 1.01em!important;
}

.tab-button:hover {
    text-decoration: underline;
}

.tab-button.tab0 {
    bbackground-color: #95b75c
}

.tab-button.tab1 {
    bbackground-color: #555
}

.tab-button.tab2 {
    bbackground-color: #95b75c
}

.tab-content {
    position: relative;
    margin-top: 10px;
    height: 600px;
    ooverflow-y: scroll;
    overflow-y: hidden;
}

.tab-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* Ensure all content fits */
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s, visibility .5s;
}

.tab-panel.active {
    opacity: 1;
    visibility: visible;
}
@media(min-width: 1000px) {
    #header {
        min-height: 100vh;
    }
}
@media(max-width: 999px) {
    #header {
        min-height: 50vh;
    }
}


@media (min-width: 768px) {
    .tabs-container {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .calendartable th:nth-child(1),
    .calendartable td:nth-child(1) {
        display: none;
    };
    padding: 5px;
}

