/* month */


.month-picker-wrapper {
    position: relative;
    display: inline-block;
}

.month-picker-input {
    width: 160px;
    padding: 8px;
    padding-right: 30px;
    /* text-align: center; */
    cursor: pointer;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    background-color: white !important;
    color:rgb(133,133,133)!important
}

.icon-calendar {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    pointer-events: none;
    color:#000;
}

.month-picker-popup {
    display: none;
    position: absolute;
    top: 40px;
    left: 0;
    background: white;
    border: 1px solid #ccc;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
    padding: 10px;
    z-index: 1000;
    width: 200px;
    text-align: center;
    color:#000
}

.year-selector {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 14px;
}

.year-selector button {
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
}

.month-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.month {
    padding: 6px;
    text-align: center;
    cursor: pointer;
    border-radius: 2px;
    border: #fff 1px solid;
    transition: background 0.3s;
    font-size: 12px;
    font-family: Arial, Helvetica, sans-serif;
    
}

.month:hover {
    background: #adcff4;
    border: #000 1px solid;
    
}

.month.selected {
    background: #007bff;
    border: #000 2px solid;
    color: white;
}

.month-picker-footer {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
}

.month-picker-footer button {
    width: 48%;
    padding: 5px;
    border: none;
    cursor: pointer;
    font-size: 12px;
    border-radius: 5px;
}



.btn-current {
   
    color: #007bff;
    border: #fff 1px solid;
    
}

.btn-current:hover {
    background: #adcff4;
    border: #000 1px solid;
}
/* Date y datetime */
.date-container {
    position: relative;
    display: inline-block;
  }

  .date-container input {
    padding-right: 30px; /* Espacio para el ícono */
    cursor: pointer; /* Mostrar puntero */
  }

  .date-container::before {
    content: "\e92d"; /* Unicode para el ícono */
   
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none; /* Prevenir interacción */
    font-family: 'icomoon' !important;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
  
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color:#000
  }

  input[type="date"]::-webkit-inner-spin-button,
  input[type="date"]::-webkit-calendar-picker-indicator,
  input[type="datetime-local"]::-webkit-inner-spin-button,
  input[type="datetime-local"]::-webkit-calendar-picker-indicator,
  input[type="week"]::-webkit-inner-spin-button,
  input[type="week"]::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
  }
 
