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;
}

.widget {
    width: 450px;
    height: 200px;
    background-color: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(255, 165, 0, 0.2);
    display: flex;
    flex-direction: column;
    border: 1px solid #333333;
}

.toggle-button {
    position: absolute;
    top: 0px;
    right: 10px;
    background-color: #1a1a1a;
    color: #ffa500;
    border: 1px solid #ffa500;
    border-radius: 5px 5px 0 0;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

.toggle-button:hover {
    background-color: #ffa500;
    color: #000000;
}

.header {
    background-color: #1a1a1a;
    color: #ffa500;
    padding: 5px;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    border-bottom: 1px solid #333333;
}

.content {
    display: flex;
    flex: 1;
    background-color: #1a1a1a;
}

#twitch-player {
    width: 400px;
    height: 175px;
    border: none;
}

.info-nav {
    width: 100px;
    padding: 5px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #1a1a1a;
    border-left: 1px solid #333333;
}

.streamer-info {
    text-align: center;
    color: #ffa500;
}

.name {
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 3px;
    color: #ffa500;
}

.viewers {
    font-size: 12px;
    color: #ffa500;
}

.navigation {
    display: flex;
    flex-direction: column;
}

.nav-button {
    padding: 5px;
    background-color: #1a1a1a;
    color: #ffa500;
    border: 1px solid #ffa500;
    border-radius: 5px;
    cursor: pointer;
    font-size: 12px;
    margin: 2px 0;
    transition: all 0.3s;
}

.nav-button:hover {
    background-color: #ffa500;
    color: #000000;
}

.nav-button:disabled {
    background-color: #1a1a1a;
    border-color: #333333;
    color: #333333;
    cursor: not-allowed;
}