       body {
            margin: 0;
            padding: 0;
            font-family: Arial, Helvetica, sans-serif;
            background-color: #111; /* Dark background color */
            color: #fff; /* White text color */
            position: relative; /* Relative positioning for the body */
        }
        .container {
            max-width: 800px;
            margin: 0 auto;
            padding: 1px;
            text-align: center;
            position: relative; /* Relative positioning for the container */
        }
        .logo {
            width: 175px; /* Adjust the size as needed */
            height: 175px;
            position: fixed;
            left: 0; /* Align to the left edge */
            top: 20px; /* Distance from the top edge */
            background-image: url('https://rhoqsolident.com/images/RSEFreestyleRadioLogo512x512.png');
            background-size: cover;
            background-repeat: repeat; /* Tile the background image */
            z-index: 1000; /* Ensure the logo appears above other elements */
        }
        /* Hamburger Menu Styling */
        .hamburger {
            cursor: pointer;
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 1001;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }
        .hamburger div {
            width: 30px;
            height: 3px;
            background-color: #FF3333;
            transition: 0.4s;
        }
        /* Navigation Menu */
        .menu {
            display: none; /* Hidden by default */
            flex-direction: column;
            position: fixed;
            top: 60px; /* Below the hamburger icon */
            right: 20px;
            background-color: #000000;
            padding: 10px;
            border-radius: 5px;
            z-index: 1000;
        }
        .menu a {
            padding: 10px;
            text-decoration: none;
            color: #FF3333;
            display: block;
        }
        .menu a:hover {
            background-color: #444;
        }
        /* Show the menu when active */
        .menu.active {
            display: flex;
        }
        .status, .recently-played, .footer {
            background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent black background */
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 20px;
            text-align: center;
        }
        .status h1, .recently-played h1, .footer h1 {
            color: #FF3333; /* Red color */
            font-size: 18px; /* Smaller font size */
        }
        .menu-section {
            margin-bottom: 15px; /* Add space between sections */
        }

        .menu-section h3 {
            margin: 0;
            padding: 3px 8px;
            font-size: 13px;
            color: #FFFFFF; /* Section title color */
            background-color: #222; /* Background for the section title */
            border-radius: 3px;
        }

        .menu a {
            padding: 4px 6px; /* Adjust padding for better readability */
            margin: 2px 0; /* Add some spacing between links */
        }
        .navbar a.active {
          color: white;
          font-weight: bold;
        }
        .submenu {
            list-style: none; /* Optional: Remove bullet points */
            padding: 0; /* Optional: Adjust padding */
            margin: 0; /* Optional: Adjust margin */
        }

        .submenu li {
            margin-bottom: 5px; /* Add spacing between links */
        }

        .submenu a {
            padding: 4px 6px;
            font-size: 13px;
            color: #FF3333;
            font-weight: bold;
            text-decoration: none;
            display: block;
        }

        .submenu a:hover {
            background-color: #444;
            color: @FF3333;
        }
        .nav-link.active {
            color: #FCF55F;
            font-weight: bold;
        }

        /* For the iframe specifically: Override the container max-width */
        .full-width-iframe {
            width: 100vw; /* Full width of the viewport */
            margin-left: calc(-50vw + 50%); /* Centering trick to make the iframe span the full viewport width */
            position: relative;
            height: 900px; /* Explicit height for the iframe container */
        }
        .full-width-iframe iframe {
            width: 100%;  /* Ensure iframe takes the full width */
            height: 900px; /* Explicit height for the iframe itself */
            border: 0; /* Optional: Remove border */
        }

        .iframe-container {
            position: relative;
            overflow: hidden;
            padding-top: 56.25%; /* 16:9 aspect ratio (divide 9 by 16 = 0.5625) */
        }
        .iframe-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }
        .recently-played p {
            margin-top: 10px;
        }
        .center {
            margin: 0 auto;
            max-width: 600px;
        }
        a {
            color: #FF3333; /* Red color for links */
            text-decoration: none;
        }
        a:hover {
            text-decoration: underline;
        }
        /* Media queries for mobile devices */
        @media screen and (max-width: 600px) {
            .logo {
                width: 120px; /* Adjust the size for mobile devices */
                height: 120px;
                top: 10px; /* Adjust the distance from the top edge for mobile devices */
            }
        }
        /* Makes the animation pause on hover */
        .moving-text:hover{
            animation-play-state: paused;
        }
        /* The animation */
        @keyframes marquee{
            0%{transform: translateX(100%);}
            100%{transform: translateX(-100%);}
        }
        /* media query to enable animation for only those who want it */
        @media (prefers-reduced-motion: no-preference) {
            .moving-text{
                animation: marquee 30s linear infinite;
            }
        }
        .blink_text {
            animation: 2s blinker linear infinite;
            color: #FF3333;
        }
        @keyframes blinker {  
            0% { opacity: 1.0; }
            50% { opacity: 0.0; }
            100% { opacity: 1.0; }
        }
        .pop-out-button {
            margin-top: 20px;
            padding: 10px 20px;
            font-size: 16px;
            cursor: pointer;
            background-color: #FF3333;
            color: white;
            border: none;
            border-radius: 5px;
        }

        /* Imgage Carousel */
        .carousel-container {
            width: 100%;
            overflow: hidden;
            position: relative;
            padding: 15px 0;
        }

        .carousel-track {
            display: flex;
            gap: 20px;
            will-change: transform;
            transform: translateX(0);
        }

        .carousel-item {
            flex: 0 0 220px;
            text-align: center;
        }

        .carousel-item img {
            width: 200px;
            height: 200px;
            object-fit: cover;
            border-radius: 12px;
        }


        table {
          font-family: arial, sans-serif;
          border-collapse: collapse;
          width: 100%;
        }

        td, th {
          border: 1px solid #dddddd;
          text-align: left;
          padding: 8px;
        }

        tr:nth-child(even) {
          background-color: #111;
        }
 
         .form-container {
            max-width: 700px;
            margin: 0 auto;
            padding: 50px;
            background-color: rgba(0, 0, 0, 0.7);
            border-radius: 10px;
        }
        form {
            display: flex;
            flex-direction: column;
        }
        label, input, textarea, select, button {
            margin-bottom: 20px;
            font-size: 16px;
        }
        input, textarea, select {
            padding: 10px;
            background-color: #333;
            color: white;
            border: 1px solid #ccc;
            border-radius: 5px;
        }
        button {
            padding: 10px 20px;
            background-color: #FF3333;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }

        video {
            height: 100vh;
            width: 100%;
            object-fit: fill; // use "cover" to avoid distortion
            position: absolute;
        }