/* Define United Rentals brand colors */
:root {
    --ur-blue: #015696;
    --ur-gray: #A1A0A5;
    --ur-black: #231E1F;
  }
  
  /* Minimal body style to remove any border or forced background */
  body {
    margin: 0;
    padding: 0;
    border: none !important;
    background: none !important; /* removes the black background */
    color: #333; /* keep or adjust to your brand color if you like */
    font-family: 'Roboto', sans-serif;
    text-align: center; /* optional; remove if you don't need center text */
    box-sizing: border-box;
    max-height: 100vh;
    max-width: 100vw;
    max-height: 100dvh;
    max-width: 100dvw;
    /* line-height, if desired:
      line-height: 1.5;
    */
  }

  
  .loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0A1F44;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5em;
    z-index: 9000; /* Ensure it covers all elements */
  }
  
  .hidden {
    display: none;
  }
  

  
  .device-container {
    padding: 0;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    position: relative;
    width: 100%;
    height: 100vh; /* makes container fill the entire viewport height */
    display: none; /* adjust based on your JS logic */
  }
  
  
  iframe {
    width: 100%;
    height: 100%;
    border: none;
    visibility: hidden;
    z-index: 9999;
    max-height: 100vh;
    max-height: 100dvh;
  }
  
  #dashboard {
    position: relative;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: auto;
    display: flex;
  }
  
  .loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: auto;
    font-weight: bold;
    color: var(--ur-blue);
    animation: pulse 1.5s infinite;
  }
  
  @keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
  }


  .logo-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.05; /* Adjust for a very subtle background */
    z-index: 1; /* Ensure it's behind other elements */
    pointer-events: none; /* Allow interactions to pass through to elements above */
}

.logo-overlay img {
    width: 100%;
    height: auto;
    max-width: 100%;
}

.logo-overlay-full {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1; /* Ensure it's behind other elements */
  pointer-events: none; /* Allow interactions to pass through to elements above */
}

.logo-overlay-full img {
  width: 100%;
  height: auto;
  max-width: 100%;
}

/* ==========================================
🔹  Scrollbar Stylin'
============================================= */
/* 🔹 Sleek Black Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px; /* Adjust scrollbar thickness explicitly */
  height: 10px;
}

::-webkit-scrollbar-track {
  background-color: #0A1F44; /* Clearly matches dark background for sleek integration */
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(145deg, #434343, #111111); /* Modern black gradient clearly */
  border-radius: 5px; /* Softer rounded edges explicitly */
  box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(145deg, #555555, #222222); /* Slightly lighter gradient clearly on hover */
}


  