:root {

  --primary-color-nav: #fff;
  --secondary-color-nav: #fff;

  --primary-color: #ff791a;
  --secondary-color: #ff9d58;
  --tercer-color: #b55b31;
  --dark-color: #1a1a2e;
  --light-color: #f8f9fa;
  --azul-primario: #0347b9;
  --azul-secundario: #00a1ff;
  --color-azul: #07143D;

  --color-fondobody: #f0f2f5;



  --fuente-principal: 'Poppins', sans-serif;
  --tamano-global: 97%;
}

/* Selección global de texto */
::selection {
    background-color: #07143D;
    color: #ffffff;
}
::-moz-selection {
    background-color: #07143D;
    color: #ffffff;
}

/* Corregir resaltado de campos de fecha y hora (Safari/Chrome/Edge) */
input[type="date"]::-webkit-datetime-edit-year-field:focus,
input[type="date"]::-webkit-datetime-edit-month-field:focus,
input[type="date"]::-webkit-datetime-edit-day-field:focus,
input[type="time"]::-webkit-datetime-edit-hour-field:focus,
input[type="time"]::-webkit-datetime-edit-minute-field:focus,
input[type="time"]::-webkit-datetime-edit-ampm-field:focus {
    background-color: #07143D !important;
    color: #ffffff !important;
    border-radius: 2px;
}