        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: #65472a;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            display: flex;
            flex-direction: column;
        }

        .toggle-button {
            position: absolute;
            top: 0px;
            right: 10px;
            background-color: #6d5353;
            color: white;
            border: none;
            border-radius: 5px 5px 0 0;
            padding: 5px 10px;
            cursor: pointer;
            font-size: 14px;
        }

        .toggle-button:hover {
            background-color: #7d6363;
        }

        .header {
            background-color: #6d5353;
            color: white;
            padding: 5px;
            text-align: center;
            font-size: 14px;
            font-weight: bold;
        }

        .content {
            display: flex;
            flex: 1;
        }

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

        .info-nav {
            width: 100px;
            padding: 5px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

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

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

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

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

        .nav-button {
            padding: 5px;
            background-color: #6d5353;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 12px;
            margin: 2px 0;
        }

        .nav-button:hover {
            background-color: #7d6363;
        }

        .nav-button:disabled {
            background-color: #4d3d3d;
            cursor: not-allowed;
        }
