<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    overflow: hidden;
}
.widget-container {
    position: relative;
    display: none;
    background-color: transparent; /* Explicitly set as transparent */
}
.widget {
    width: 450px;
    height: 200px;
    background-color: #232944; /* Slightly lighter navy background */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
}
.toggle-button {
    position: absolute;
    top: 0px;
    right: 10px;
    background-color: #2f3350; /* Header color matching */
    color: white;
    border: none;
    border-radius: 5px 5px 0 0;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 14px;
}
.toggle-button:hover {
    background-color: #424b70; /* Lighter on hover */
}
.header {
    background-color: #2f3350; /* Header color matching STATS/COMMUNITY headers */
    color: white;
    padding: 5px;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
}
.content {
    display: flex;
    flex: 1;
    background-color: #232944; /* Ensure content area has background */
}
#twitch-player {
    width: 400px;
    height: 175px;
    background-color: #1a1e2e; /* Darker background for player area when empty */
}
.info-nav {
    width: 100px;
    padding: 5px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #373e5c; /* Dark blue for sidebar */
}
.streamer-info {
    text-align: center;
    color: white;
    background-color: transparent; /* Explicitly set as transparent */
}
.name {
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 3px;
}
.viewers {
    font-size: 12px;
    color: #a0a0a0;
}
.navigation {
    display: flex;
    flex-direction: column;
    background-color: transparent; /* Explicitly set as transparent */
}
.nav-button {
    padding: 5px;
    background-color: #2980b9; /* Blue button matching level indicators */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 12px;
    margin: 2px 0;
}
.nav-button:hover {
    background-color: #3498db; /* Lighter blue on hover */
}
.nav-button:disabled {
    background-color: #1e2642; /* Darker navy for disabled state */
    cursor: not-allowed;
}</pre></body></html>