@tailwind base;
@tailwind components;
@tailwind utilities;
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');
/*

@layer components {
  .btn-primary {
    @apply py-2 px-4 bg-blue-200;
  }
}

*/
* {
  font-family: 'Montserrat', sans-serif;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

.main-color {
  color: #842AD2 !important;
}

input[type="text"], textarea, select{ 
  @apply rounded-md border-blue-500;
}

.titles {
  color: #842AD2 !important;
  top: 299px !important;
  left: 464px !important;
}

.hidden {
  display: none;
}

.line-primary {
  border-bottom: 2px solid var(--color-primary);
}

.btn-large {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: 0.46px;
  text-align: left;
}

.input-container {
  position: relative;
  margin-bottom: 2rem;
}

.log-label {
  position: absolute;
  left: 10px;
  top: 14px;
  transition: all 0.2s ease;
  padding: 0 2px;
  z-index: 1;
  color: #b3b3b3;
  background: #ffffff; /* Asegurarse de que el fondo tapa el contenido del input */
}

.log-input {
  outline: none;
  transition: border-color 0.3s;
  color: #0d0b0b;
  width: 100%;
  box-sizing: border-box;
}

.form-label {
  position: absolute;
  left: 10px;
  top: -10px;
  transition: all 0.2s ease;
  padding: 0 2px;
  z-index: 1;
  color: #b3b3b3;
  background: #ffffff; /* Asegurarse de que el fondo tapa el contenido del input */
}

.form-label-tag {
  position: absolute;
  left: 10px;
  top: 10px;
  transition: all 0.2s ease;
  padding: 0 2px;
  z-index: 1;
  color: #b3b3b3;
  background: #ffffff; /* Asegurarse de que el fondo tapa el contenido del input */
}

.log-input:focus {
  border-color: var(--color-primary);
}


.log-input:focus + .log-label,
.log-input:valid + .log-label {
  top: -10px;
  color: var(--color-primary);
  font-size: 14px;
}

.log-input::placeholder {
  font-size: 16px;
  transition: opacity 0.3s ease;
  opacity: 0;
}

.log-input:focus::placeholder {
  opacity: 1;
}

#login-form {
 margin-top: 2.5rem;
}

.selected-item {
  color: #842AD2;
  border-right: 4px solid #842AD2;
}

.selected-item-text {
  color: #842AD2;
}

.background-button {
  background-color: #842AD2;
}

.background-head {
  background-color: #F0DBFF;
}

.current {
  background-color: #bc96dc;
  border-color: #842AD2;
}

.pagination-padding {
  padding: 6px 13px;
}

.field_with_errors {
  width: 100%;
}

/* Tooltip container */
.tooltip {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

/* Texto del Tooltip */
.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: white;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.3s;
}

/* Muestra el tooltip */
.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}


.cufetooltip {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

/* Texto del Tooltip */
.cufetooltip .cufetooltiptext {
  visibility: hidden;
  width: 900px;
  background-color: black;
  color: white;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.3s;
}

/* Muestra el tooltip */
.cufetooltip:hover .cufetooltiptext {
  visibility: visible;
  opacity: 1;
}

.text-green-500 {
  color: rgb(32, 184, 32);
}

.btn_orders {
  background-color: #842AD2; /* Color de fondo */
  color: white; /* Color del texto */
  padding: 0.5rem 1rem; /* Espaciado interno: Y X */
  border-radius: 0.375rem; /* Bordes redondeados */
  font-weight: 500; /* Peso de la fuente */
  font-size: 0.875rem; /* Tamaño de la fuente */
  line-height: 1.25rem; /* Altura de línea */
  transition: background-color 0.3s ease; /* Transición suave del color de fondo */
  border: none; /* Sin bordes */
  cursor: pointer; /* Cursor de mano al pasar por encima */
}

.btn_orders:hover {
  background-color: #7b22ce; /* Color de fondo al pasar el mouse por encima */
}

.btn_orders:focus {
  outline: none; /* Elimina el contorno al enfocar */
  ring: 4px solid #bdd4e7; /* Anillo de foco personalizado (simula focus:ring-4 focus:ring-blue-300 de Tailwind) */
}

.btn_orders:active {
  background-color: #6a1b9a; /* Color de fondo al hacer clic */
}

.btn_orders:disabled {
  background-color: #cccccc; /* Color de fondo cuando está deshabilitado */
  cursor: default; /* Cursor predeterminado */
  opacity: 0.5; /* Opacidad reducida */
}

.filter-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px; /* Ajusta este valor según la necesidad de espaciado en la parte inferior */
}

.filter-container form {
  display: flex;
  align-items: center;
  gap: 10px; /* Espacio entre los elementos del formulario */
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */

