/* Estilos generales */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #F7F9FB;
}

/* Sidebar */
#sidebar {
    transition: all 0.3s ease;
}

.sidebar-collapsed {
    width: 60px !important;
}

.sidebar-expanded {
    width: 250px !important;
}

/* Encabezado */
.header-container {
    position: relative;
    margin-bottom: 20px;
}

.header-background {
    position: absolute;
    top: 0;
    left: -25px;
    right: -25px;
    height: 100%;
    background-color: #FFFFFF;
    z-index: 0;
}

.header-content {
    position: relative;
    z-index: 1;
}

/* Botones */
.button-primary {
    background-color: #2656a4;
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: bold;
    height: 40px;
    line-height: 40px;
    font-size: 13px;
}

.button-primary:hover {
    background-color: #0F4C81;
    transform: translateY(-2px);
}

.button-secondary {
    background-color: #ffffff;
    color: #2656a4;
    border: 2px solid #2656a4;
    padding: 0 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: bold;
    height: 40px;
    line-height: 40px;
    font-size: 13px;
}

.button-secondary:hover {
    background-color: #D1D7E0;
    transform: translateY(-2px);
}

/* Tarjetas */
.card {
    background-color: #FFFFFF;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* DatePicker custom */
.DateRangePickerInput {
    display: inline-flex !important;
    align-items: center !important;
    padding: 0px !important;
    border: none !important;
    box-shadow: none !important;
    background-color: transparent !important;
    gap: 0 !important;
}

.DateInput_input {
    font-size: 16px !important;
    padding: 15px !important;
    height: 37px !important; 
    margin: 0px !important;
}

.menu-link {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    display: flex;
    align-items: center;  
    padding: 4px 0;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

.menu-link:hover {
    color: white;
}
/* 
.menu-icon {
  display: inline-block;
  width: 22px;
  height: 22px;
  background-image: url("/assets/icons/inicio.svg");
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 10px;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
} */


/* ICONO: Inicio */
.menu-icon {
  display: inline-block;
  width: 22px;
  height: 22px;
  background-image: url("/assets/icons/inicio.svg");
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 10px;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  -webkit-tap-highlight-color: transparent !important;
}

.menu-link:hover .menu-icon {
  background-image: url("/assets/icons/inicio_white.svg");
  border: none !important;
}


/* ICONO: Venta Experta */
.chart-icon {
  display: inline-block;
  width: 22px;
  height: 22px;
  background-image: url("/assets/icons/venta_experta.svg");
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 10px;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  -webkit-tap-highlight-color: transparent !important;
}

.menu-link:hover .chart-icon {
  background-image: url("/assets/icons/venta_experta_white.svg");
  border: none !important;
}

/* ICONO: One Promart */
.store-icon {
  display: inline-block;
  width: 22px;
  height: 22px;
  background-image: url("/assets/icons/one_promart.svg");
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 10px;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  -webkit-tap-highlight-color: transparent !important;
}

.menu-link:hover .store-icon {
  background-image: url("/assets/icons/one_promart_white.svg");
  border: none !important;
}

/* ICONO: Analítica */
.analitic-icon {
  display: inline-block;
  width: 22px;
  height: 22px;
  background-image: url("/assets/icons/analitica.svg");
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 10px;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  -webkit-tap-highlight-color: transparent !important;
}

.menu-link:hover .analitic-icon {
  background-image: url("/assets/icons/analitica_white.svg");
  border: none !important;
}