.pag-main{
  overflow-y: auto;
  flex-grow: 1;
  height: 100vh;
}

.pag-welcome{
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    /* background-image: url('/static/images/desktopBg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; */
}

.fondo{
    background-image: url('/static/images/desktopBg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.card-fondo{
  background-image: url('/static/images/fondo.PNG');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.pag-welcome_vh{
  overflow: auto;
  border-radius: 15px;
}

@media (max-width: 768px) {

  .pag-welcome_vh {
    height: 50vh;
  }
}

@media (max-width: 576px) {

  .pag-welcome_vh {
    height: 100vh;
    border-radius: 0px;
  }
}

.pag-welcome__button{
    /* background-color: #FF5A1F; */
    font-weight: bold;
    color: white;
}

.pag-welcome__button-gmail{
    text-decoration: none;
    background-color: #FF5A1F;
    color: white;
    font-weight: 500;
}

.pag-welcome__button-gmail:hover{
    background-color: #dd5524;
}

.login-client__minutes{
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: 35px;
    font-weight: 500;
    color: #FF5A1F;
}

.login-user__time{
    color: #FF5A1F;
}

.social-icons a{
    color: #0C6B97;
}

.social-icons a:hover{
    color: #0fa4e9;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000; 
  background-color: #f8f9fa; 
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.sidebar {
  height: calc(100vh - 56px); 
  width: 250px;
  position: fixed;
  top: 56px; 
  left: -250px; 
  background-color: #1A2E44;
  padding-top: 20px;
  transition: left 0.3s ease;
  z-index: 999;
}

.sidebar.active {
  left: 0;
}

.sidebar a {
  padding: 10px 15px;
  text-decoration: none;
  font-size: 18px;
  color: #fff;
  display: block;
}

.sidebar a.active {
  background-color: #38445E;
  border-left: 4px solid #36a2ebb3;
  font-weight: 500;
}

.sidebar a:hover {
  background-color: #38445E;
}

.mainContent {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.main-content {
  margin-left: 0;
  padding: 20px;
  margin-top: 56px;
  transition: margin-left 0.3s ease;
  overflow-y: auto; /* Permite desplazamiento vertical */
  flex-grow: 1; /* Ocupa el espacio disponible */
  height: calc(100vh - 56px); /* Altura menos el navbar */
}

@media (min-width: 768px) {
  .sidebar {
    left: 0; 
  }

  .main-content {
    margin-left: 250px;
  }
}

.config_button-color{
  list-style: none;
}

.config_button-color {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 10px;
}

.config_button-color > li {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.config_button-color > li:hover {
  transform: scale(1.1);
}

.config_button-color > li a {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.roulette-tooltip-container {
    cursor: pointer;
  }
  
  .roulette-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #343a40;
    color: #fff;
    padding: 8px 5px;
    border-radius: 4px;
    font-size: 14px;
    min-width: 100px;
    text-align: center;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
  }
  
  .roulette-tooltip-container:hover .roulette-tooltip {
    opacity: 1;
    visibility: visible;
  }
  
  .roulette-tooltip:after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #343a40 transparent transparent transparent;
  }
  
