/* ==============================================
  CSS: CODECTI DASHBOARD
================================================= */
/* GENERALES ===============> */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  line-height: 1.4;
}

.mb-1 {
  margin-bottom: 1rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.text-reset {
  padding: 0 0;
  margin: 0 0;
}

.text-white {
  color: white
}

.text-sm {
  font-size: 0.8125rem;
  line-height: 1.5;
}

.text-foreground {
  color: #132239;
}

.text-muted-foreground {
  color: #58677e;
}


.font-bold {
  font-weight: 700;
}

.text-lg {
  font-size: 1.0625rem;
  line-height: 1.55;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.4;
}

.font-bold {
  font-weight: 600;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-col-reverse {
  flex-direction: column-reverse;
}

.flex-row-reverse {
  flex-direction: row-reverse;
}

.items-center {
  align-items: center;
}

.justify-content-center {
  justify-content: center
}

.justify-between {
  justify-content: space-between;
}

.gap-1 {
  gap: 0.25rem;
}

.gap-2 {
  gap: 0.50rem;
}

.flex-wrap {
  flex-wrap: wrap;
}

.w-full {
  width: 100%;
}

.h-auto {
  height: auto;
}

.d-none {
  display: none;
}

/* HEADER  ===============> */
.jumbotron-dash {
  margin-top: 5vh;
  padding: 10vh;
  display: flex;
  flex-direction: column;
  background-color: #1a2c4e;
  border-bottom: 4px solid transparent;
  border-image: linear-gradient(90deg, #dc2626 0%, #1a2c4e 50%, #ea580c 100%) 1;
}

.jumbotron-header {
  display: flex;
  gap: 8px;
  align-items: center;
}

.j-icon {
  width: 50px;
  height: 50px;
  background-color: #ffffff26;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
}

.j-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.j-title>h2 {
  margin: 0 0;
}

.j-tag {
  width: auto;
  color: #FCA5A5;
  background: #EF444433;
  padding: 2px 10px;
  margin: 0 0 2px;
  font-size: 10px;
  border-radius: 4px;
}

.jumbotron-stats {
  display: grid;
  grid-template-columns: auto auto auto auto auto auto;
  gap: 10px;
}

.card-stats {
  padding: 0.75rem;
  background-color: rgb(255 255 255 / 0.1);
  border-radius: 0.75rem;
  border: 1px solid rgb(255 255 255 / 0.15);
}

.stats-warning {
  background-color: rgb(239 68 68 / 0.2);
  border-color: 1px solid rgb(248 113 113 / 0.4);
}

.stats-title {
  color: rgb(255 255 255 / 0.7);
  font-weight: 600;
  font-size: 10px;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

/* BODY ======================> */
.container-dash {
  max-width: 1250px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 10vh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #f8f4f0 0%, #f5f7fb 100%);
}

.nav-dash {
  background-color: #E2E6E980;
  margin-top: 2.5vh;
  padding: 0.8rem 0.5rem;
  border-radius: 0.375rem;
}

.btn-tabs {
  cursor: pointer;
  background-color: none;
  border: transparent;
  padding: 0.5rem 0.75rem;
  border-radius: 0.75rem;
  font-size: 0.75rem;
  line-height: 1.4;
  color: #58677E;
}

.active-btn {
  background-color: #ffffff;
}

.tabs {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.btn-modal-active {
  padding: 0.75rem 0.85rem;
  color: white;
  background-color: #1F375C;
  border: none;
  border-radius: 0.75rem;
  cursor: pointer;
}

.btn-modal-active:hover {
  opacity: 0.8;
  transition: 0.5s;
}

/* MODAL ======================> */
.modal-envelop {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1000;
}

.modal-container {
  background-color: #ffffff;
  border-radius: 1.35rem;
  max-width: 42rem;
  max-height: 90vh;
  width: 100%;
  padding: 1.5rem;
}

.btn-close-tag {
  background: none;
  border: none;
  cursor: pointer;
}

.bordes {
  border-style: none;
  border-style: solid;
  border-width: 1px;
  border-color: rgb(222, 227, 231);
  border-radius: 10px;
}

.form_inputs {
  font-size: 0.8125rem;
  display: flex;
  line-height: 1.5;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  width: 100%;
  box-sizing: border-box;
  background-color: rgb(249, 250, 251);
}

.form_labels {
  line-height: 1;
  font-size: 0.8125rem;
  color: rgb(19, 34, 57);
}

.form_col2 {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form_col3 {

  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.content_forms {
  display: grid;
  gap: 1rem;
}

.btn_gd {
  font-size: 0.8125rem;
  line-height: 1.5;
}

.btn_c {
  background-color: #1F375C;
  color: white;
}

.btn_g:hover {
  background-color: #f1a83a;
}

.btn_action {
  border-style: none;
  background-color: transparent;
  border-radius: 0.5rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  height: 2.25rem;
}

.btn_action:hover {
  background-color: #f1a83a;
  color: white;
}

.btn_delete{
  color: red;
}


.btn_aprobar{
  color: green;
  
}