@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

.calendario-container {
  font-family: "Roboto", sans-serif;
  display: flex;
  justify-content: center;
  border: 2px solid #00bfff;
  border-radius: 10px;
  overflow: hidden;
  color: #fff;
}
  
  .hoy {
    background: #0f1721;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 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: 14pt;
    letter-spacing: 5px;
}

  .mes {    
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 10pt;
  }

  .anio {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 10pt;
  }
  
  .calendario {
    background: #0f1721;
    padding: 10px;
    width: 200px;
    height: 200px;
  }
  
  .encabezado {
    display: flex;
    justify-content: space-between;
    padding: 0px 4px 4px 4px;
  }
  
  .dias-semana {
    border-bottom: 1px dotted #00bfff;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-weight: bold;
    padding: 3px 0;
    font-size: 10pt;
  }
  
  .dias {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-size: 10pt;
  }
  
  .dia {
    padding: 2px 0px;
    border-radius: 4px;
    cursor: pointer;
  }
  
  .hoy-destacado {
    background-color: #fff;
    color: #0f1721 !important;
    font-weight: bold;
  }
  
  .controles {
    display: flex;
    justify-content: space-between;
    padding: 0px 4px 4px 4px;
  }
  
  .btn {
    border: none;
    font-size: 10pt;
    background: none;
    cursor: pointer;
    color: inherit;
  }

  .dia-domingo {
    color: red;
  }
  
  .dia-sabado {
    color: #00bfff;
  }
  
  .dia-inactivo {
    color: gray;
  }
  
  .caret-left {
    padding-left: 2px;
  }

  .caret-right {
    padding-right: 2px;
  }

  /* xsm */
  @media (min-width: 411px) {
    .hoy {
      border-right: 2px dashed #00bfff;
      border-bottom: 0px;
    }
  }
 
  /* sm */
  @media (min-width: 576px) {
    .hoy {
      border-right: 2px dashed #00bfff;
    }
  }
    /* md */
  @media (min-width: 768px) {
    .calendario-container {
      display: block;
    }

    .hoy {
      border-bottom: 2px dashed #00bfff;
      border-right: 0px;
    }

  }
  /* lg */
  @media (min-width: 992px) {
    

  }

  /* xl */
  @media (min-width: 1200px) {

  }

  /* xxl */
  @media (min-width: 1400px) {
    .hoy {
      width: 330px;
      height: 330px;
    }

    .dia-semana {
        font-size: 3rem;
    }

    .numero-dia {
        font-size: 120pt;
        line-height: 100pt;
    }

    .calendario {
      width: 330px;
      height: 330px;
    }

    .dias-semana {
      font-size: 18pt;
    }

    .semana {
      font-size: 25pt;
      letter-spacing: 7px;
    }

    .mes {
      font-size: 18pt;
    }

    .anio {
      font-size: 18pt;
    }

    .dias {
      font-size: 18pt;
    }    

    .btn {
      font-size: 18pt;
    }

    .dia {
      padding:2px 0px
    }

    .controles {
        padding: 0px 8px 8px 8px;
    }

    .encabezado {
        padding: 0px 8px 8px 8px;
    }
  }