@tailwind base;
@tailwind components;
@tailwind utilities;

:root {
  --foreground-rgb: 0, 0, 0;
  --background-start-rgb: 214, 219, 220;
  --background-end-rgb: 255, 255, 255;
}

@media (prefers-color-scheme: dark) {
  :root {
    --foreground-rgb: 255, 255, 255;
    --background-start-rgb: 0, 0, 0;
    --background-end-rgb: 0, 0, 0;
  }
}

body {
  color: rgb(var(--foreground-rgb));
  background: linear-gradient(
      to bottom,
      transparent,
      rgb(var(--background-end-rgb))
    )
    rgb(var(--background-start-rgb));
}

.content-center {
  padding-top: 30px;
  display: flex;
  justify-content: center;
}

.chip-justify-center{
  display: flex;
  justify-content: center;
  padding-top: 15px;
  padding-left: 60px;
  padding-right: 30px;
}


.principal-button{
  background-color: #f7ce48!important;
  color: #020202 ;
}

.principal-button:hover{
  background-color: #221f20!important;
  color: #f7ce48;
}

.localization{
  position: absolute;
  float: initial;
  top: 0;
  right: 0;
  z-index: 900;
}

.alert_inline{
  margin-bottom: 15px;
}

.principal-color{
  color: #f7ce48;
}
.error-color{
  color: #ff4c51;
}
.success-color{
  color: #56ca00;
}
.blue-color{
  color: #16b1ff;
}
.disabled-color{
  color: #666666;
}



/* dashboard */
.dashboard-content{
  display: flex;
  justify-content: center;
}

.dashboard-card-primary{
  width: 85%;
  justify-content: center;
}

/* app header bar */
.app-header-bar{
  width: 85%;
  padding-top: 10px;
  justify-content: left;
  margin: 0 auto
}

.menu1 {
  margin-bottom: 40px;
  margin-top: 20px;
}

/** project */
.project-card-primary{
  width: 95%;
  justify-content: center;
}

.menu-buttons{
  display: flex;
  justify-content: center;
  padding-bottom: 10px;
}

.section-flex{
  flex-grow: 1;
}

/** semaforo locker*/
.BOX-button{
  color: #ffffff ;
  background-color: #3d3d3d!important;  
}
.BOX-button-principal-color{
  color: #000000!important;  
  background-color: #f7ce48!important;  
}
.BOX-button-red-color{
  color: #000000!important;  
  background-color: #ff4c51!important;  
}
