body {
    background-color: #1b1b1b;
    color: #c5c5c5;
    text-align: center;
    font-size: 32px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 32px;
}

@media screen and (max-width: 800px) {
    body {
        font-size: 24px;
    }
}

.logo {
    max-height: 200px;
    max-width: 80%;
}

.small-logo {
    max-height: 40px;
    max-width: 150px;
}

button {
    padding: 12px;
    border-radius: 6px;
    background-color: #1d1d1d;
    border: 1px solid #3c3c3c;
    color: #dddddd;
}

label {
    display: block;
}

input {
    padding: 8px;
}

.stream-container {
    position: relative;
    background-color: #101010;
    width: 100%;
    height: calc((100vw - 80px) * 9/16);
    max-height: calc(100vh - 80px);
    --controls-visibility: 0;
}

.stream-container:hover {
    --controls-visibility: 1;
}

.stream-container > .bigplay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 30px 45px;
    border-radius: 16px;
    background-color: rgba(0, 0, 0, 0.7);
    cursor: pointer;
}

.stream-container > video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.stream-container > .controls {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 48px;
    width: calc(100% - 16px);

    transition: 300ms;
    opacity: var(--controls-visibility);
    background-color: rgba(0, 0, 0, 0.7);

    padding: 8px;

    display: flex;
    gap: 8px;

    z-index: 999;
}

.stream-container > .controls > .spacer {
    flex-grow: 1;
}

.stream-link {
    font-size: 16px;
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: #2c2c2c; /* Dark background */
    color: #ffffff; /* Light text color */
}

th, td {
    padding: 10px;
    border: 1px solid #444; /* Darker border */
}

th {
    background-color: #3a3a3a; /* Slightly lighter background for headers */
}

tr:nth-child(even) {
    background-color: #3a3a3a; /* Alternate row color */
}

tr:hover {
    background-color: #555; /* Highlight row on hover */
}
