html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

/* Basic styles for tabs */
.tab-container {
    display: flex;
    flex-direction: column;
    height: 100vh; /* Fill the entire viewport */
    min-height: 100vh;
}

.tab-buttons {
    display: flex;
    margin-bottom: 10px;
    flex: 0 0 auto;
}

.tab-buttons button {
    margin-right: 5px;
    padding: 5px 10px;
    cursor: pointer;
}

.tab-content {
    border: 1px solid #ccc;
    padding: 10px;
    display: none;
    max-width: 100%;
    overflow: auto;
    height: 100%;
    box-sizing: border-box;
}

.tab-content.active {
    display: block;
}

.channel-section {
    margin-bottom: 20px;
}

.channel-section h3 {
    margin: 0 0 10px;
}

.tab-contents {
    flex: 1 1 auto;
    overflow: auto;
    min-height: 0;
}