/* Tailwind Base Styles */
*,
::before,
::after {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: #e5e7eb;
}

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
  tab-size: 4;
  font-family: 'Roboto', sans-serif;
}

body {
  margin: 0;
  line-height: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

a {
  color: inherit;
  text-decoration: inherit;
}

button,
input {
  font-family: inherit;
  font-size: 100%;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
}

button {
  background-color: transparent;
  background-image: none;
  cursor: pointer;
}

img,
svg {
  display: block;
  vertical-align: middle;
}

img {
  max-width: 100%;
  height: auto;
}

/* Custom Colors */
:root {
  --navbar-text-color: #373739;
  --navbar-border-color: #D9D9D9;
  --gris3: #F5F6FA;
  --gris-oscuro: #373739;
}

/* Custom CSS from globals.css */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.transition-opacity {
  transition: opacity 1s ease-in-out;
}

.opacity-0 {
  opacity: 0;
}

.opacity-100 {
  opacity: 1;
}

/* Utility Classes */
.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.grid {
  display: grid;
}

.hidden {
  display: none;
}

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

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

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

.items-start {
  align-items: flex-start;
}

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

.items-end {
  align-items: flex-end;
}

.justify-start {
  justify-content: flex-start;
}

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

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

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-5 {
  gap: 1.25rem;
}

.gap-10 {
  gap: 2.5rem;
}

.w-auto {
  width: auto;
}

.w-full {
  width: 100%;
}

.w-10 {
  width: 2.5rem;
}

.w-28 {
  width: 7rem;
}

.w-64 {
  width: 16rem;
}

.w-80 {
  width: 20rem;
}

.w-96 {
  width: 24rem;
}

.w-1\/2 {
  width: 50%;
}

.w-1\/3 {
  width: 33.333333%;
}

.w-2\/3 {
  width: 66.666667%;
}

.w-2\/5 {
  width: 40%;
}

.w-3\/4 {
  width: 75%;
}

.w-3\/5 {
  width: 60%;
}

.w-9\/12 {
  width: 75%;
}

.w-10\/12 {
  width: 83.333333%;
}

.w-11\/12 {
  width: 91.666667%;
}

.h-auto {
  height: auto;
}

.h-full {
  height: 100%;
}

.h-11 {
  height: 2.75rem;
}

.h-52 {
  height: 13rem;
}

.mt-0 {
  margin-top: 0;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 0.75rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-5 {
  margin-top: 1.25rem;
}

.mt-7 {
  margin-top: 1.75rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mt-10 {
  margin-top: 2.5rem;
}

.mt-12 {
  margin-top: 3rem;
}

.mt-16 {
  margin-top: 4rem;
}

.mt-20 {
  margin-top: 5rem;
}

.-mt-10 {
  margin-top: -2.5rem;
}

.-mt-14 {
  margin-top: -3.5rem;
}

.-mt-24 {
  margin-top: -6rem;
}

.-mt-44 {
  margin-top: -11rem;
}

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

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-5 {
  margin-bottom: 1.25rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-10 {
  margin-bottom: 2.5rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mb-20 {
  margin-bottom: 5rem;
}

.ml-2 {
  margin-left: 0.5rem;
}

.ml-5 {
  margin-left: 1.25rem;
}

.ml-8 {
  margin-left: 2rem;
}

.ml-10 {
  margin-left: 2.5rem;
}

.ml-16 {
  margin-left: 4rem;
}

.ml-20 {
  margin-left: 5rem;
}

.-ml-5 {
  margin-left: -1.25rem;
}

.mr-2 {
  margin-right: 0.5rem;
}

.mr-3 {
  margin-right: 0.75rem;
}

.mr-5 {
  margin-right: 1.25rem;
}

.mr-8 {
  margin-right: 2rem;
}

.mr-10 {
  margin-right: 2.5rem;
}

.m-1 {
  margin: 0.25rem;
}

.m-5 {
  margin: 1.25rem;
}

.m-10 {
  margin: 2.5rem;
}

.p-2\.5 {
  padding: 0.625rem;
}

.py-1\.5 {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}

.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.text-left {
  text-align: left;
}

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

.text-right {
  text-align: right;
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

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

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.font-normal {
  font-weight: 400;
}

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

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

.font-extrabold {
  font-weight: 800;
}

.leading-tight {
  line-height: 1.25;
}

.tracking-tight {
  letter-spacing: -0.025em;
}

.text-white {
  color: rgb(255, 255, 255);
}

.text-black {
  color: rgb(0, 0, 0);
}

.text-gray-400 {
  color: rgb(156, 163, 175);
}

.bg-white {
  background-color: rgb(255, 255, 255);
}

.bg-blue-500 {
  background-color: rgb(59, 130, 246);
}

.border {
  border-width: 1px;
}

.border-2 {
  border-width: 2px;
}

.border-b {
  border-bottom-width: 1px;
}

.border-b-2 {
  border-bottom-width: 2px;
}

.border-solid {
  border-style: solid;
}

.border-transparent {
  border-color: transparent;
}

.border-blue-500 {
  border-color: rgb(59, 130, 246);
}

.rounded {
  border-radius: 0.25rem;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.rounded-2xl {
  border-radius: 1rem;
}

.rounded-3xl {
  border-radius: 1.5rem;
}

.rounded-full {
  border-radius: 9999px;
}

.shadow-md {
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

.overflow-hidden {
  overflow: hidden;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.sticky {
  position: sticky;
}

.fixed {
  position: fixed;
}

.top-0 {
  top: 0;
}

.inset-0 {
  inset: 0;
}

.inset-y-0 {
  top: 0;
  bottom: 0;
}

.right-0 {
  right: 0;
}

.z-10 {
  z-index: 10;
}

.self-auto {
  align-self: auto;
}

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

.align-middle {
  vertical-align: middle;
}

.inline {
  display: inline;
}

.inline-block {
  display: inline-block;
}

.underline {
  text-decoration-line: underline;
}

.no-underline {
  text-decoration-line: none;
}

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

.cursor-pointer {
  cursor: pointer;
}

.aspect-\[16\/7\] {
  aspect-ratio: 16/7;
}

.aspect-\[18\/6\.6\] {
  aspect-ratio: 18/6.6;
}

.bg-no-repeat {
  background-repeat: no-repeat;
}

.bg-cover {
  background-size: cover;
}

.bg-contain {
  background-size: contain;
}

.bg-center {
  background-position: center;
}

.bg-top {
  background-position: top;
}

.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.duration-\[10000ms\] {
  transition-duration: 10000ms;
}

.ease-in-out {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.align-top {
  vertical-align: top;
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* Custom color classes */
.text-\[\#1D2C56\] {
  color: #1D2C56;
}

.text-\[\#21272A\] {
  color: #21272A;
}

.text-\[\#366DF5\] {
  color: #366DF5;
}

.text-\[\#373739\] {
  color: #373739;
}

.text-\[\#004899\] {
  color: #004899;
}

.bg-\[\#366DF5\] {
  background-color: #366DF5;
}

.bg-\[\#DAE6FF\] {
  background-color: #DAE6FF;
}

.bg-\[\#D2D3D5\] {
  background-color: #D2D3D5;
}

.bg-\[\#E6F2F8\] {
  background-color: #E6F2F8;
}

.bg-\[\#F5F6FA\] {
  background-color: #F5F6FA;
}

.border-\[\#D2D3D5\] {
  border-color: #D2D3D5;
}

.bg-\[\#ADAFB2\] {
  background-color: #ADAFB2;
}

/* Specific widths and heights */
.w-\[200px\] {
  width: 200px;
}

.w-\[220px\] {
  width: 220px;
}

.w-\[231px\] {
  width: 231px;
}

.w-\[236px\] {
  width: 236px;
}

.w-\[300px\] {
  width: 300px;
}

.w-\[350px\] {
  width: 350px;
}

.w-\[390px\] {
  width: 390px;
}

.w-\[720px\] {
  width: 720px;
}

.h-\[7px\] {
  height: 7px;
}

.h-\[38px\] {
  height: 38px;
}

.h-\[48px\] {
  height: 48px;
}

.h-\[50px\] {
  height: 50px;
}

.h-\[126px\] {
  height: 126px;
}

.h-\[131px\] {
  height: 131px;
}

.h-\[170px\] {
  height: 170px;
}

/* Hover states */
.hover\:border-black:hover {
  border-color: #000;
}

.hover\:bg-\[\#E6F2F8\]:hover {
  background-color: #E6F2F8;
}

/* Focus states */
.focus\:border-blue-500:focus {
  border-color: rgb(59, 130, 246);
}

/* Responsive prefixes (for reference, handled by media queries) */
@media (min-width: 768px) {
  .md\:w-1\/2 {
    width: 50%;
  }

  .md\:w-11\/12 {
    width: 91.666667%;
  }

  .md\:w-\[220px\] {
    width: 220px;
  }

  .md\:w-\[236px\] {
    width: 236px;
  }

  .md\:h-\[38px\] {
    height: 38px;
  }

  .md\:flex-row {
    flex-direction: row;
  }

  .md\:text-base {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .md\:text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }

  .md\:-mt-24 {
    margin-top: -6rem;
  }

  .md\:mb-0 {
    margin-bottom: 0;
  }
}

@media (min-width: 1024px) {
  .lg\:flex-row {
    flex-direction: row;
  }

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

  .lg\:w-1\/3 {
    width: 33.333333%;
  }

  .lg\:ml-0 {
    margin-left: 0;
  }

  .lg\:mr-0 {
    margin-right: 0;
  }

  .lg\:ml-8 {
    margin-left: 2rem;
  }

  .lg\:ml-16 {
    margin-left: 4rem;
  }

  .lg\:mt-32 {
    margin-top: 8rem;
  }

  .lg\:text-left {
    text-align: left;
  }

  .lg\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

  .lg\:w-auto {
    width: auto;
  }
}

@media (min-width: 1280px) {
  .xl\:md\:-mt-44 {
    margin-top: -11rem;
  }
}

/* Additional spacing */
.space-x-2 > :not([hidden]) ~ :not([hidden]) {
  margin-left: 0.5rem;
}

/* Disabled button */
button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Specific background images */
.bg-\[url\(\'\/banner0\.png\'\)\] {
  background-image: url('../images/banner0.png');
}

.bg-\[url\(\'\/bg-cuentageneral-1\.png\'\)\] {
  background-image: url('../images/bg-cuentageneral-1.png');
}

.bg-\[url\(\'\/bg-evaluacionpresupuestla-1\.png\'\)\] {
  background-image: url('../images/bg-evaluacionpresupuestla-1.png');
}

.bg-\[url\(\'\/bg-estadisticasfinancieras-1\.png\'\)\] {
  background-image: url('../images/bg-estadisticasfinancieras-1.png');
}

.bg-\[url\(\'\/pmp-seccion1\.png\'\)\] {
  background-image: url('../images/pmp-seccion1.png');
}

.bg-\[url\(\'\/pmp-seccion3\.png\'\)\] {
  background-image: url('../images/pmp-seccion3.png');
}

/* Padding right */
.pr-3 {
  padding-right: 0.75rem;
}

/* Justify left */
.justify-left {
  justify-content: left;
}

/* Flow */
.flow {
  display: flow-root;
}
