 :root {
            --background-color: var(--pico-background-color, #f8f9fa);
            --pico-color: var(--pico-color, #f8f9fa);
        }
        p{
            color: #f8f9fa;
        }
        label{
            color: #f8f9fa;
        }
        ol{
            color: #f8f9fa;
        }
        .container {

            justify-content: center;
            align-items: center;
            height: 100vh;
            position: relative;
            padding-top: 25px;
            margin-top: 0px;
            max-width: 800px;
        }
        .chart-container {
            margin: 0 auto;
        }
        .logo {
            display: block;
            margin: 0 auto;
            max-width: 100px;
            margin-bottom: 20px;
        }
        .sidebar {
            position: fixed;
            top: 0;
            left: 0;
            width: 250px;
            height: 100%;
            background-color: #333;
            color: white;
            padding: 20px;
            transform: translateX(-100%);
            transition: transform 0.3s ease;
            z-index: 1000;
            text-align: center;
        }
        .sidebar.open {
            transform: translateX(0);
        }
        .sidebar .logo {
            margin-bottom: 10px;
        }
        .close-button {
            position: absolute;
            top: 20px;
            right: 20px;
            cursor: pointer;
            z-index: 1000;
        }

        .hamburger {
            position: absolute;
            top: 20px;
            right: 20px;
            cursor: pointer;
            z-index: 1000;
            display: none;
        }
        
        .hamburger span {
            display: block;
            width: 37px;
            height: 5px;
            background-color: #f8f9fa;
            margin: 7.5px 0;
        }
        .close-sidebar {
            cursor: pointer;
            color: white;
            font-size: 1.2em;
            position: absolute;
            top: 10px;
            right: 10px;
        }
        .splash {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: var(--background-color);
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            transition: opacity 0.5s ease, visibility 0.5s;
        }
        .splash.hidden {
            opacity: 0;
            visibility: hidden;
        }
        .back-button {
            cursor: pointer;
            color: #00af75;
            text-decoration: underline;
            margin-right: 10px;
           
        }
        .white {
            color: #fff;
        }
        .centered {
            text-align: center;
        }
        .device-list {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
        }
        
        .device-item {
            background-color: #525f7a;
            border: 1px solid #525f7a;
            border-radius: 8px;
            padding: 15px;
            width: 100%;
            text-align: left;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
        }
        
        .device-item:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            background-color: #5d6b89;
            border-color: #5d6b89;
        }
        
        .device-item h3 {
            margin-bottom: 0px;
            color: #fff;
            text-align: left;
            word-wrap: break-word; /* Handle long words */
        }
        
        .device-item p {
            margin: 5px 0;
            color: #fff;
            font-size: 0.875rem; /* Adjust font size */
        }
        .device-item span {
            margin: 5px 0;
            color: #fff;
            font-size: 0.875rem; /* Adjust font size */
        }
        .device-item img {
            max-width: 90px;
        }
        
        .device-item .status-indicator {
            width: 15px;
            height: 15px;
            border-radius: 50%;
            margin-top: 10px;
        }
        
        .device-item .status-indicator.connected {
            background-color: #00af75;
        }
        
        .device-item .status-indicator.disconnected {
            background-color: firebrick;
        }
        .green-text {
            color: #00af75;
        }
        .price-card{
            margin-bottom: 0px;
            padding-bottom: 0px;
        }
        .toggle-icon {
          position: absolute;
          top: 37%;
          right: 10px;
          transform: translateY(-50%);
          cursor: pointer;
          user-select: none;
          font-size: 25px;
          color: #555;
        }
        .password-container {
          position: relative;
        }
       