@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

body {
    font-family: "Roboto", sans-serif;
    background: #0f1721;
    color: white;
    display: flex;
    justify-content: center;
    padding: 6px;
  }
  
  .calendario-container {
    display: flex;
    border: 2px solid #00bfff;
    border-radius: 10px;
    overflow: hidden;
  }
  
  .hoy {
    background: #0f1721;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 200px;
  }
  
  .dia-semana {
    font-weight: bold;
  font-size: 1.8rem;
    
  }
  
  .numero-dia {
    font-size: 75pt;
    font-weight: bold;
    line-height: 60pt;
  }
  
  .semana {
    padding-top: 5px;
    font-size: 1rem;
    letter-spacing: 5px;
}

  .mes {    
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 0.8rem;
  }

  .anio {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 0.8rem;
  }
  
  .calendario {
    background: #0f1721;
    padding: 10px;
    width: 200px;
  }
  
  .encabezado {
    display: flex;
    justify-content: space-between;
    font-size: 20px;
  }
  
  .dias-semana {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    color: #fff;
    font-weight: bold;
    padding: 3px 0;
    font-size: 14px;
  }
  
  .dias {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-size: 14px;
  }
  
  .dia {
    padding: 3px 0;
    border-radius: 4px;
    cursor: pointer;
  }
  
  .hoy-destacado {
    background-color: #fff;
    color: #0f1721;
    font-weight: bold;
  }
  
  .controles {
    display: flex;
    justify-content: space-between;
    color: #fff;
  }
  
  .btn {
    border: none;
    font-size: 18px;
    background: none;
    cursor: pointer;
    color: inherit;
  }

  .dia-domingo {
    color: red;
  }
  
  .dia-sabado {
    color: #00bfff;
  }
  
  .dia-inactivo {
    color: gray;
  }
  
  .caret-left {
    padding-left: 8px;
  }

  .caret-right {
    padding-right: 8px;
  }