.terms-container {
  display: flex;
  flex-direction: column;
  height: 450px;
  max-height: 450px;
  border: 1px solid var(--border-color, #e2ebf1);
  border-radius: 0.1875rem;
  background: var(--card-bg, #ffffff);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
}

.modal .terms-container {
  height: 250px;
  max-height: 250px;
  border: 2px solid var(--border-color, #e2ebf1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.terms-header {
  padding: 0.625rem;
  border-bottom: 1px solid var(--border-color, #e2ebf1);
  background: var(--surface-color, #f1f5f8);
  border-radius: 0.1875rem 0.1875rem 0 0;
  flex-shrink: 0;
}
.terms-header h5 {
  color: var(--text-color, #565758);
  font-family: "gesta", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.terms-header small {
  color: var(--text-secondary, #697d90);
  font-size: 0.875rem;
  font-weight: 500;
}

.terms-content {
  flex: 1;
  overflow-y: auto;
  padding: 0.75rem;
  background: var(--background-color, #ffffff);
  min-height: 0;
  line-height: 1.5;
  text-align: left;
}
.terms-content h6 {
  color: var(--text-color, #565758);
  font-family: "gesta", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-top: 1.25rem;
  margin-bottom: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.terms-content h6:first-child {
  margin-top: 0;
}
.terms-content p, .terms-content li {
  color: var(--text-secondary, #697d90);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0.625rem;
}
.terms-content ul {
  margin-left: 0.75rem;
  margin-bottom: 0.75rem;
}
.terms-content ul li {
  margin-bottom: 0.5rem;
}
.terms-content .text-muted {
  color: var(--text-muted, #697d90) !important;
  opacity: 0.7;
}
.terms-content .text-muted.small {
  font-size: 0.875rem;
}
.terms-content .disclaimer-section {
  margin: 0.75rem 0;
}
.terms-content .disclaimer-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}
.terms-content .disclaimer-item .disclaimer-number {
  color: var(--primary-color, #2c97de);
  font-weight: 700;
  font-size: 1rem;
  margin-right: 0.625rem;
  flex-shrink: 0;
  min-width: 2rem;
}
.terms-content .disclaimer-item p {
  margin: 0;
  color: var(--text-secondary, #697d90);
  font-size: 1rem;
  line-height: 1.6;
  flex: 1;
}

.terms-end-marker {
  border-top: 2px solid var(--accent-color, #2c97de);
  padding-top: 0.75rem;
  margin-top: 1.25rem;
}
.terms-end-marker p {
  color: var(--text-secondary, #697d90);
  font-weight: 500;
}
.terms-end-marker p .bi {
  color: var(--success-color, #7bc34e);
  margin-right: 0.5rem;
}

.terms-footer {
  padding: 0.625rem;
  border-top: 1px solid var(--border-color, #e2ebf1);
  background: var(--surface-color, #f1f5f8);
  border-radius: 0 0 0.1875rem 0.1875rem;
  flex-shrink: 0;
}
.terms-footer .alert {
  background: rgba(44, 151, 222, 0.1);
  border: 1px solid rgba(44, 151, 222, 0.2);
  color: var(--info-color, #2c97de);
  border-radius: 0.1875rem;
  padding: 0.625rem;
  margin-bottom: 0.625rem;
}
.terms-footer .alert .bi {
  color: var(--info-color, #2c97de);
}
.terms-footer .form-check {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.625rem;
}
.terms-footer .form-check .form-check-input {
  width: 1.2em;
  height: 1.2em;
  margin-top: 0.125rem;
  margin-right: 0.5rem;
  margin-left: 0;
  flex-shrink: 0;
  border: 2px solid var(--border-color, #99a3ac);
  border-radius: 4px;
  background-color: var(--background-color, #ffffff);
}
.terms-footer .form-check .form-check-input:checked {
  background-color: var(--success-color, #7bc34e);
  border-color: var(--success-color, #7bc34e);
}
.terms-footer .form-check .form-check-input:focus {
  box-shadow: 0 0 0 3px rgba(123, 195, 78, 0.25);
  outline: none;
}
.terms-footer .form-check .form-check-input:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.terms-footer .form-check .form-check-label {
  color: var(--text-color, #565758);
  font-size: 1rem;
  font-weight: 500;
  margin-left: 0.5rem;
  cursor: pointer;
}
.terms-footer .form-check .form-check-label:hover {
  color: var(--text-color, #565758);
}
.terms-footer .form-check .form-check-input:disabled ~ .form-check-label {
  opacity: 0.7;
  cursor: not-allowed;
}
.terms-footer small {
  color: var(--text-muted, #697d90);
  opacity: 0.8;
  font-size: 0.875rem;
  display: block;
  margin-bottom: 0.5rem;
}

.terms-content {
  scrollbar-width: thin;
  scrollbar-color: var(--border-color, #99a3ac) transparent;
}
.terms-content::-webkit-scrollbar {
  width: 8px;
}
.terms-content::-webkit-scrollbar-track {
  background: transparent;
}
.terms-content::-webkit-scrollbar-thumb {
  background: var(--border-color, #99a3ac);
  border-radius: 4px;
}
.terms-content::-webkit-scrollbar-thumb:hover {
  background: var(--text-secondary, #697d90);
}

@media (max-width: 43.75em) {
  .terms-container {
    height: 300px;
    max-height: 300px;
  }
  .terms-header,
  .terms-footer {
    padding: 0.5rem;
  }
  .terms-content {
    padding: 0.625rem;
  }
  .terms-content h6 {
    font-size: 0.875rem;
    margin-top: 0.625rem;
    margin-bottom: 0.5rem;
  }
  .terms-content p, .terms-content li {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
  }
}
[data-theme=dark] .terms-container {
  border-color: var(--border-color-dark, #99a3ac);
  background: var(--card-bg-dark, #1f272e);
}
[data-theme=dark] .terms-header,
[data-theme=dark] .terms-footer {
  background: var(--surface-color-dark, #212e39);
  border-color: var(--border-color-dark, #99a3ac);
}
[data-theme=dark] .terms-content {
  background: var(--background-color-dark, #1f272e);
}
[data-theme=dark] .terms-end-marker {
  border-color: var(--accent-color, #2c97de);
}

@media (max-width: 575.98px) {
  .col-xs-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-xs-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-xs-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xs-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-xs-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-xs-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xs-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-xs-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-xs-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xs-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-xs-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-xs-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 576px) {
  .col-sm-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-sm-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-sm-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-sm-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-sm-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 992px) {
  .col-lg-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-lg-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-lg-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-lg-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-lg-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 1200px) {
  .col-xl-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-xl-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-xl-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-xl-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-xl-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 1400px) {
  .col-xxl-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-xxl-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-xxl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-xxl-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-xxl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-xxl-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-xxl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-xxl-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-xxl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.bg-primary {
  background-color: var(--primary-color, #2c97de) !important;
}

.bg-secondary {
  background-color: var(--secondary-color, #6c757d) !important;
}

.bg-success {
  background-color: #7bc34e !important;
}

.bg-danger {
  background-color: #dc3545 !important;
}

.bg-warning {
  background-color: #ffc107 !important;
}

.bg-info {
  background-color: #17a2b8 !important;
}

.bg-light {
  background-color: #f8f9fa !important;
}

.bg-dark {
  background-color: #1f272e !important;
}

.bg-white {
  background-color: #ffffff !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.text-primary {
  color: var(--primary-color, #2c97de) !important;
}

.text-secondary {
  color: var(--text-secondary, #697d90) !important;
}

.text-success {
  color: #7bc34e !important;
}

.text-danger {
  color: #dc3545 !important;
}

.text-warning {
  color: #ffc107 !important;
}

.text-info {
  color: #17a2b8 !important;
}

.text-light {
  color: #f8f9fa !important;
}

.text-dark {
  color: var(--text-color, #565758) !important;
}

.text-white {
  color: #ffffff !important;
}

.text-muted {
  color: var(--text-secondary, #697d90) !important;
}

.table {
  width: 100%;
  margin-bottom: 1rem;
  color: var(--text-color, #565758);
  border-collapse: collapse;
}

.table th,
.table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid var(--border-color, #e2ebf1);
}

.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid var(--border-color, #e2ebf1);
  background-color: var(--card-bg, #ffffff);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.5px;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}

.table-hover tbody tr:hover {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-bordered {
  border: 1px solid var(--border-color, #e2ebf1);
}

.table-bordered th,
.table-bordered td {
  border: 1px solid var(--border-color, #e2ebf1);
}

.table-borderless th,
.table-borderless td,
.table-borderless thead th,
.table-borderless tbody + tbody {
  border: 0;
}

.table-sm th,
.table-sm td {
  padding: 0.3rem;
}

.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table-responsive > .table {
  margin-bottom: 0;
}

.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
}
.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

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

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

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

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

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

.justify-content-end {
  justify-content: flex-end !important;
}

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

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

.justify-content-around {
  justify-content: space-around !important;
}

.justify-content-evenly {
  justify-content: space-evenly !important;
}

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

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

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

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

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

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

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

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

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

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

.m-0 {
  margin: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

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

.mt-1 {
  margin-top: 0.25rem !important;
}

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

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

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

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

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.ms-0 {
  margin-left: 0 !important;
}

.ms-1 {
  margin-left: 0.25rem !important;
}

.ms-2 {
  margin-left: 0.5rem !important;
}

.ms-3 {
  margin-left: 1rem !important;
}

.ms-4 {
  margin-left: 1.5rem !important;
}

.ms-5 {
  margin-left: 3rem !important;
}

.me-0 {
  margin-right: 0 !important;
}

.me-1 {
  margin-right: 0.25rem !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

.me-3 {
  margin-right: 1rem !important;
}

.me-4 {
  margin-right: 1.5rem !important;
}

.me-5 {
  margin-right: 3rem !important;
}

.mx-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.mx-1 {
  margin-left: 0.25rem !important;
  margin-right: 0.25rem !important;
}

.mx-2 {
  margin-left: 0.5rem !important;
  margin-right: 0.5rem !important;
}

.mx-3 {
  margin-left: 1rem !important;
  margin-right: 1rem !important;
}

.mx-4 {
  margin-left: 1.5rem !important;
  margin-right: 1.5rem !important;
}

.mx-5 {
  margin-left: 3rem !important;
  margin-right: 3rem !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.ps-0 {
  padding-left: 0 !important;
}

.ps-1 {
  padding-left: 0.25rem !important;
}

.ps-2 {
  padding-left: 0.5rem !important;
}

.ps-3 {
  padding-left: 1rem !important;
}

.ps-4 {
  padding-left: 1.5rem !important;
}

.ps-5 {
  padding-left: 3rem !important;
}

.pe-0 {
  padding-right: 0 !important;
}

.pe-1 {
  padding-right: 0.25rem !important;
}

.pe-2 {
  padding-right: 0.5rem !important;
}

.pe-3 {
  padding-right: 1rem !important;
}

.pe-4 {
  padding-right: 1.5rem !important;
}

.pe-5 {
  padding-right: 3rem !important;
}

.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.px-1 {
  padding-left: 0.25rem !important;
  padding-right: 0.25rem !important;
}

.px-2 {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}

.px-3 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.px-4 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

.px-5 {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

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

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.text-start {
  text-align: left !important;
}

.text-end {
  text-align: right !important;
}

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

.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.fw-light {
  font-weight: 300 !important;
}

.fw-normal {
  font-weight: 400 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-bolder {
  font-weight: bolder !important;
}

.fst-italic {
  font-style: italic !important;
}

.fst-normal {
  font-style: normal !important;
}

.border {
  border: 1px solid var(--border-color, #e2ebf1) !important;
}

.border-0 {
  border: 0 !important;
}

.border-top {
  border-top: 1px solid var(--border-color, #e2ebf1) !important;
}

.border-end {
  border-right: 1px solid var(--border-color, #e2ebf1) !important;
}

.border-bottom {
  border-bottom: 1px solid var(--border-color, #e2ebf1) !important;
}

.border-start {
  border-left: 1px solid var(--border-color, #e2ebf1) !important;
}

.border-primary {
  border-color: var(--primary-color, #2c97de) !important;
}

.border-secondary {
  border-color: var(--secondary-color, #6c757d) !important;
}

.border-success {
  border-color: #7bc34e !important;
}

.border-danger {
  border-color: #dc3545 !important;
}

.border-warning {
  border-color: #ffc107 !important;
}

.border-info {
  border-color: #17a2b8 !important;
}

.border-light {
  border-color: #f8f9fa !important;
}

.border-dark {
  border-color: #1f272e !important;
}

.rounded {
  border-radius: 0.25rem !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.rounded-1 {
  border-radius: 0.2rem !important;
}

.rounded-2 {
  border-radius: 0.25rem !important;
}

.rounded-3 {
  border-radius: 0.3rem !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: 50rem !important;
}

.rounded-top {
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
}

.rounded-end {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}

.rounded-bottom {
  border-bottom-right-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-start {
  border-bottom-left-radius: 0.25rem !important;
  border-top-left-radius: 0.25rem !important;
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: sticky !important;
}

.top-0 {
  top: 0 !important;
}

.top-50 {
  top: 50% !important;
}

.top-100 {
  top: 100% !important;
}

.bottom-0 {
  bottom: 0 !important;
}

.bottom-50 {
  bottom: 50% !important;
}

.bottom-100 {
  bottom: 100% !important;
}

.start-0 {
  left: 0 !important;
}

.start-50 {
  left: 50% !important;
}

.start-100 {
  left: 100% !important;
}

.end-0 {
  right: 0 !important;
}

.end-50 {
  right: 50% !important;
}

.end-100 {
  right: 100% !important;
}

.translate-middle {
  transform: translateX(-50%) translateY(-50%) !important;
}

.translate-middle-x {
  transform: translateX(-50%) !important;
}

.translate-middle-y {
  transform: translateY(-50%) !important;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.vw-100 {
  width: 100vw !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mh-100 {
  max-height: 100% !important;
}

.vh-100 {
  height: 100vh !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.shadow-none {
  box-shadow: none !important;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.overflow-visible {
  overflow: visible !important;
}

.overflow-scroll {
  overflow: scroll !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-color, #565758);
  background-color: var(--background-color, #ffffff);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "gesta", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", sans-serif;
  font-weight: 900;
  color: var(--text-color, #565758);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1rem;
}

h6 {
  font-size: 0.875rem;
}

p {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

a {
  color: var(--accent-color, #2c97de);
  text-decoration: none;
  transition: all 0.1s ease-in-out;
}
a:hover {
  color: var(--secondary-color, #218ad0);
}

.container, .container-fluid {
  max-width: 66.25rem;
  margin: 0 auto;
  padding: 0 0.75rem;
}

.container-fluid {
  max-width: 100%;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.col, .col-1, .col-2, .col-3, .col-4, .col-5, .col-6,
.col-7, .col-8, .col-9, .col-10, .col-11, .col-12,
.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6,
.col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
  position: relative;
  width: 100%;
  padding: 0 15px;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.col-11 {
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}

.col-10 {
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.col-8 {
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.col-7 {
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-5 {
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}

.col-4 {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-2 {
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.col-1 {
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}

@media (min-width: 43.75em) {
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .col-md-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-md-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-md-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-md-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
}
@media (min-width: 65.875em) {
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .col-lg-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-lg-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-lg-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-lg-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
}
.modal, .offcanvas, .collapse:not(.show), .dropdown-menu {
  display: none !important;
}

#blazor-error-ui {
  display: none !important;
}

*:focus {
  outline: none !important;
}

body *:focus:not(:focus-visible) {
  outline: none !important;
}

.modal.show, .offcanvas.show, .collapse.show, .dropdown-menu.show {
  display: block !important;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 5vh auto;
  max-width: 400px;
  pointer-events: none;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-xl {
  max-width: 1200px;
}

.modal-lg {
  max-width: 900px;
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #1f272e;
  border: none;
  border-radius: 0.5rem;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  text-align: center;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 1.875rem 1.25rem;
  border-bottom: none;
}
.modal-header .modal-title {
  font-family: "gesta", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0;
}
.modal-header .btn-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: none;
  border: none;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}
.modal-header .btn-close:hover {
  color: #ffffff;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 0 1.875rem 0.75rem;
  max-height: calc(90vh - 120px);
  overflow-y: auto;
}
.modal-body .container-fluid {
  max-width: 100%;
  padding: 0;
}
.modal-body .row {
  margin: 0 -10px;
}
.modal-body .row [class*=col-] {
  padding: 0 10px;
}
.modal-body .form-group {
  margin-bottom: 0.75rem;
  text-align: left;
}
.modal-body .form-floating {
  margin-bottom: 0.75rem;
}
.modal-body .form-label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.modal-body .form-control {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  border-radius: 0.1875rem;
  padding: 0.625rem;
}
.modal-body .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.modal-body .form-control:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: #2c97de;
  box-shadow: 0 0 0 2px rgba(44, 151, 222, 0.25);
  outline: none;
}

.modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 0.625rem;
  padding: 1.25rem 1.875rem;
}

.mt-4 {
  margin-top: 1.25rem !important;
}

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

.me-1 {
  margin-right: 0.25rem !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

.g-3 > * {
  padding: 0.75rem;
}

.w-100 {
  width: 100% !important;
}

.h-100 {
  height: 100% !important;
}

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

.text-success {
  color: #7bc34e !important;
}

.text-primary {
  color: var(--primary-color, #2c97de) !important;
}

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

.d-flex {
  display: flex !important;
}

.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

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

.flex-column {
  flex-direction: column !important;
}

.gap-3 {
  gap: 0.75rem !important;
}

.is-invalid {
  border-color: #dc2626 !important;
}

.is-valid {
  border-color: #7bc34e !important;
}

.invalid-feedback {
  color: #dc2626;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.valid-feedback {
  color: #7bc34e;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.hero-section {
  position: relative;
  min-height: 500px;
  height: auto;
  margin-top: 0;
  padding: 3.75rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}
@media (min-height: 700px) and (min-width: 43.75em) {
  .hero-section {
    min-height: calc(100vh - 80px);
    padding: 0;
  }
}
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(31, 39, 46, 0.8) 0%, rgba(33, 46, 57, 0.6) 100%);
  z-index: 1;
}
.hero-section .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  max-width: 66.25rem;
  padding: 3.75rem 1.25rem;
}
.hero-section .hero-content h1 {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 1.875rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.hero-section .hero-content .hero-subtitle {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3.75rem;
}
.hero-section .hero-content .hero-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 3.75rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero-section .hero-content .hero-cards {
  margin-top: 3.75rem;
}
.hero-section .hero-content .hero-cards .card {
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 0.5rem;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}
.hero-section .hero-content .hero-cards .card .card-body {
  padding: 1.875rem;
}
.hero-section .hero-content .hero-cards .card .card-title {
  color: #1f272e;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
}
.hero-section .hero-content .hero-cards .card .card-text {
  color: #565758;
  margin-bottom: 0.75rem;
}

.hero-section.hero-aircraft {
  background-image: url("/images/backgrounds/pexels-137666-747079.jpg");
}

.hero-section.hero-sky {
  background-image: url("/images/backgrounds/pexels-pixabay-164175.jpg");
}

.hero-section.hero-tower {
  background-image: url("/images/backgrounds/pexels-kelly-11733074.jpg");
}

.hero-section.hero-tower-alt {
  background-image: url("/images/backgrounds/pexels-wdtoro-17324301.jpg");
}

.hero-section.hero-compact {
  min-height: 300px;
  padding: 1.875rem 0;
}
@media (min-height: 600px) and (min-width: 43.75em) {
  .hero-section.hero-compact {
    min-height: calc(30vh + 80px);
    padding: 0;
  }
}

.hero-section.hero-dashboard-compact {
  min-height: 200px;
  padding: 0.75rem 0;
}
@media (min-height: 500px) and (min-width: 43.75em) {
  .hero-section.hero-dashboard-compact {
    min-height: calc(20vh + 80px);
    padding: 0;
  }
}
.hero-section.hero-dashboard-compact .hero-content {
  padding: 0.75rem 1.25rem;
}
.hero-section.hero-dashboard-compact .hero-content h1 {
  font-size: 2rem;
  margin-bottom: 0.625rem;
}
.hero-section.hero-dashboard-compact .hero-content .hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.dashboard-card {
  background: var(--card-bg, #ffffff);
  border: none !important;
  border-radius: 0.5rem;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
  margin-bottom: 0.75rem;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  min-height: 120px;
  display: flex;
  flex-direction: column;
}
.dashboard-card:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}
.dashboard-card.clickable-card {
  cursor: pointer;
}
.dashboard-card .card-body {
  padding: 1.25rem;
  flex-grow: 1;
  display: flex;
  align-items: center;
}
.dashboard-card .card-body .d-flex {
  align-items: center;
  width: 100%;
}
.dashboard-card .card-body .d-flex > div:first-child {
  flex: 1;
}
.dashboard-card .card-body .card-title {
  font-family: "gesta", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 0.25rem;
  line-height: 0.9;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  border-bottom: none !important;
}
.dashboard-card .card-body .card-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2;
}
.dashboard-card .card-body .fs-1 {
  font-size: 3rem;
  opacity: 0.9;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}
.dashboard-card.bg-primary {
  background: linear-gradient(135deg, var(--primary-color, #2c97de) 0%, #1d7bb9 100%);
}
.dashboard-card.bg-warning {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}
.dashboard-card.bg-info {
  background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
}
.dashboard-card.bg-success {
  background: linear-gradient(135deg, var(--success-color, #7bc34e) 0%, #62a538 100%);
}
.dashboard-card.bg-secondary {
  background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
}
.dashboard-card.bg-danger {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.dashboard-stats {
  margin-bottom: 1.875rem;
}
.dashboard-stats .row {
  margin: 0 -0.5rem;
}
.dashboard-stats .row [class*=col-] {
  padding: 0 0.5rem;
  margin-bottom: 0.75rem;
}

#requestAccessModal .modal-content {
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  background: #1f272e;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
#requestAccessModal .modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.875rem;
  background: #1f272e;
  min-height: unset;
  max-height: unset;
}
#requestAccessModal .modal-body .application-form-container {
  margin: 0;
  padding: 0;
  background: transparent;
}
#requestAccessModal .modal-body .form-label {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}
#requestAccessModal .modal-body .form-control {
  background: var(--background-color, #ffffff) !important;
  border: 1px solid var(--border-color, #e2ebf1);
  color: var(--text-color, #565758);
  border-radius: 0.1875rem;
  padding: 0.625rem;
  font-size: 1rem;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box;
}
#requestAccessModal .modal-body .form-control:focus {
  border-color: var(--primary-color, #2c97de);
  box-shadow: 0 0 0 3px rgba(44, 151, 222, 0.1);
  outline: none;
}
#requestAccessModal .modal-body .form-control::placeholder {
  color: var(--text-muted, #697d90);
  opacity: 0.7;
}
#requestAccessModal .modal-body textarea.form-control {
  min-height: 95px;
  resize: vertical;
}
#requestAccessModal .modal-body .mb-4 {
  margin-bottom: 0.625rem !important;
}
#requestAccessModal .modal-header {
  border-bottom: 2px solid var(--primary-color, #2c97de);
  background: #1f272e;
  padding: 0.75rem 1.875rem;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}
#requestAccessModal .modal-header .modal-title {
  font-family: "gesta", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", sans-serif;
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}
#requestAccessModal .modal-header .btn-close {
  filter: invert(1);
}
#requestAccessModal .modal-footer {
  background: #1f272e;
  padding: 0.75rem 1.875rem;
}
#requestAccessModal .modal-footer .btn {
  border-radius: 0.1875rem;
  font-weight: 600;
  padding: 0.5rem 0.75rem;
}
#requestAccessModal .modal-footer .btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  background-color: var(--secondary-color, #218ad0) !important;
  border-color: var(--secondary-color, #218ad0) !important;
}
#requestAccessModal .hero-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.875rem;
}
#requestAccessModal .bg-body {
  background: #1f272e !important;
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}

#loginModal .modal-content {
  background: #1f272e;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
#loginModal .modal-header {
  background: #1f272e;
  border-bottom: 2px solid var(--primary-color, #2c97de);
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}
#loginModal .modal-body {
  background: #1f272e;
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}
#loginModal .modal-body .mb-3:first-child {
  margin-top: 0.75rem;
}
#loginModal .modal-body .form-label {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}
#loginModal .modal-footer {
  background: #1f272e;
  border-top: unset;
  padding-top: 0;
}

.navbar {
  min-height: 80px;
  padding: 0;
  position: relative;
  background: #1f272e;
  z-index: 1020;
  display: flex;
  align-items: center;
}
.navbar .container-fluid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-height: 80px;
}
.navbar .d-flex.align-items-center.gap-3 {
  margin-left: auto;
  flex-shrink: 0;
}
.navbar .d-flex.align-items-center.gap-3 .navbar-nav {
  min-height: auto;
  gap: 0.5rem;
}
.navbar .navbar-brand {
  font-weight: 700;
  font-size: 1.25rem;
  color: #ffffff;
  text-decoration: none;
  display: flex;
  align-items: center;
  height: 100%;
}
.navbar .navbar-brand:hover {
  color: #ffffff;
}
.navbar .nav-link {
  color: rgba(255, 255, 255, 0.9);
  padding: 0.5rem 0.75rem;
  font-weight: 500;
  transition: all 0.1s ease-in-out;
  text-decoration: none;
  border: none;
  background: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  text-align: center;
}
.navbar .nav-link:hover {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 0.1875rem;
}
.navbar .nav-link i {
  flex-shrink: 0;
  margin-right: 0.25rem;
}
.navbar .nav-link span {
  white-space: nowrap;
  line-height: 1.2;
}
@media (max-width: 1500px) {
  .navbar .nav-link {
    max-width: 120px;
    flex-wrap: wrap;
  }
  .navbar .nav-link span {
    white-space: normal;
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
}
@media (max-width: 1300px) {
  .navbar .nav-link {
    max-width: 100px;
  }
}
.navbar .navbar-toggler {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: none;
  padding: 4px 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar .navbar-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  width: 1.5em;
  height: 1.5em;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}
.navbar .navbar-nav {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  min-height: 80px;
  flex-wrap: wrap;
  row-gap: 0.25rem;
}
.navbar .navbar-nav:not(:has(.nav-item)) {
  min-height: 0;
}
.navbar .navbar-nav .nav-item {
  list-style: none;
  display: flex;
  align-items: center;
  min-height: 44px;
  flex-shrink: 0;
}
.navbar .navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
  display: flex;
  min-height: 80px;
}
@media (max-width: 65.875em) {
  .navbar .navbar-toggler {
    display: block;
  }
  .navbar .navbar-collapse {
    display: none;
  }
  .navbar .navbar-collapse.show {
    display: block;
    background: #1f272e !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 1rem;
    border-radius: 0 0 0.1875rem 0.1875rem;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    height: auto !important;
  }
  .navbar .navbar-nav {
    flex-direction: column;
    gap: 0.5rem;
  }
  .navbar .nav-link {
    max-width: none;
    flex-wrap: nowrap;
  }
  .navbar .nav-link span {
    white-space: nowrap;
  }
  .navbar .navbar-toggler-icon {
    position: relative;
  }
  .navbar .navbar-toggler.active .navbar-toggler-icon {
    background-image: none;
  }
  .navbar .navbar-toggler.active .navbar-toggler-icon::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.75);
    transform: translateY(-50%) rotate(45deg);
  }
  .navbar .navbar-toggler.active .navbar-toggler-icon::after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.75);
    transform: translateY(-50%) rotate(-45deg);
  }
}
@media (min-width: 65.875em) {
  .navbar .navbar-toggler {
    display: none;
  }
  .navbar .navbar-collapse {
    display: flex !important;
  }
}
.navbar .dropdown-menu {
  background-color: #1f272e;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.1875rem;
}
.navbar .dropdown-menu .dropdown-item {
  color: rgba(255, 255, 255, 0.9);
  padding: 0.5rem 0.75rem;
  text-decoration: none;
}
.navbar .dropdown-menu .dropdown-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}
.navbar .dropdown-menu .dropdown-divider {
  border-color: rgba(255, 255, 255, 0.2);
}
.navbar .navbar-text {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.navbar .navbar-text .btn {
  padding: 0.5rem 0.75rem;
  border-radius: 0.1875rem;
  font-weight: 500;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.1s ease-in-out;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.navbar .navbar-text .btn.btn-outline-light {
  color: #ffffff;
  background: transparent;
}
.navbar .navbar-text .btn.btn-outline-light:hover {
  background: #ffffff;
  color: #1f272e;
  border-color: #ffffff;
}
.navbar .navbar-nav .nav-link.btn-link {
  color: #ffffff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.5rem 0.75rem;
  border-radius: 0.1875rem;
  font-weight: 500;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.1s ease-in-out;
}
.navbar .navbar-nav .nav-link.btn-link:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 0.1875rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.15s ease-in-out;
}
.btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(44, 151, 222, 0.25);
}

.btn-primary {
  background-color: var(--primary-color, #2c97de);
  border-color: var(--primary-color, #2c97de);
  color: #ffffff;
}
.btn-primary:hover {
  background-color: var(--secondary-color, #218ad0);
  border-color: var(--secondary-color, #218ad0);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(44, 151, 222, 0.2);
}

.btn-outline-primary {
  background-color: transparent;
  border-color: var(--primary-color, #2c97de);
  color: var(--primary-color, #2c97de);
}
.btn-outline-primary:hover {
  background-color: var(--primary-color, #2c97de);
  color: #ffffff;
  transform: translateY(-1px);
}

.btn-lg {
  padding: 0.75rem 1.875rem;
  font-size: 1.25rem;
}

.card {
  background-color: var(--card-bg, #ffffff);
  border: 1px solid var(--border-color, #e2ebf1);
  border-radius: 0.5rem;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
  margin-bottom: 1.25rem;
  transition: all 0.3s ease-in-out;
}
.card:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.card-header {
  padding-top: 15px;
}

.card-body {
  padding: 1.875rem;
}
.card-body .card-title {
  font-family: "gesta", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-color, #565758);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.card-body .card-text {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--text-color, #565758);
}

.footer {
  background: linear-gradient(135deg, #1f272e 0%, #212e39 100%);
  color: #ffffff;
  padding: 3.75rem 0 1.875rem;
  margin-top: auto;
  margin-bottom: 0;
}
.footer .container-fluid {
  max-width: 66.25rem;
  margin: 0 auto;
  padding: 0 0.75rem;
}
.footer .row {
  align-items: center;
}
.footer .copyright {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}
.footer nav {
  display: flex;
  gap: 1.875rem;
}
.footer nav a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.875rem;
  transition: all 0.1s ease-in-out;
}
.footer nav a:hover {
  color: #ffffff;
}

.form-control, .form-select {
  border: 1px solid var(--border-color, #99a3ac);
  border-radius: 0.1875rem;
  padding: 0.75rem;
  font-size: 0.9375rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", sans-serif;
  transition: all 0.3s ease-in-out;
  background-color: #ffffff;
  color: var(--text-color, #565758);
  height: 48px;
}
.form-control:focus, .form-select:focus {
  border-color: var(--accent-color, #2c97de);
  box-shadow: 0 0 0 3px rgba(44, 151, 222, 0.1);
  outline: none;
}

label, .form-label {
  color: #697d90;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: block;
}

.application-form-container {
  background: #1f272e;
  min-height: calc(100vh - 150px);
  padding: 0;
  margin: 0;
}
.application-form-container .container-fluid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.875rem 0.75rem;
}

.application-form {
  background: #ffffff;
  border: 1px solid var(--border-color, #e2ebf1);
  border-radius: 0.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  padding: 3.75rem;
  margin: 0;
}
.application-form h1, .application-form h2, .application-form h3, .application-form h4, .application-form h5, .application-form h6 {
  color: var(--text-color, #565758);
  margin-top: 3.75rem;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px solid var(--primary-color, #2c97de);
  padding-bottom: 0.625rem;
}
.application-form h1:first-child, .application-form h2:first-child, .application-form h3:first-child, .application-form h4:first-child, .application-form h5:first-child, .application-form h6:first-child {
  margin-top: 0;
}
.application-form .section-header {
  margin-top: 3.75rem;
  margin-bottom: 1.875rem;
  padding-bottom: 0.625rem;
  border-bottom: 1px solid var(--border-color, #e2ebf1);
}
.application-form .section-header:first-child {
  margin-top: 0;
}
.application-form .row {
  margin-bottom: 1.25rem;
}
.application-form .form-group {
  margin-bottom: 0.75rem;
}
.application-form .form-label {
  color: var(--text-color, #565758);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
  display: block;
}
.application-form .form-control, .application-form .form-select {
  background: #ffffff;
  border: 1px solid var(--border-color, #99a3ac);
  color: var(--text-color, #565758);
  border-radius: 0.1875rem;
  padding: 0.625rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  height: auto;
  min-height: 44px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  transition: all 0.3s ease-in-out;
}
.application-form .form-control::placeholder, .application-form .form-select::placeholder {
  color: var(--text-secondary, #697d90);
}
.application-form .form-control:focus, .application-form .form-select:focus {
  background: #ffffff;
  border-color: var(--primary-color, #2c97de);
  box-shadow: 0 0 0 3px rgba(44, 151, 222, 0.1);
  outline: none;
}
.application-form .form-select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m1 6 7 7 7-7'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px 12px;
  padding-right: 44px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.application-form .form-check {
  display: flex;
  align-items: center;
  margin-bottom: 0.625rem;
}
.application-form .form-check .form-check-input {
  width: 18px;
  height: 18px;
  margin-top: 0;
  margin-right: 0.625rem;
  flex-shrink: 0;
  border: 2px solid var(--border-color, #99a3ac);
  border-radius: 3px;
  background-color: #ffffff;
}
.application-form .form-check .form-check-input:checked {
  background-color: var(--primary-color, #2c97de);
  border-color: var(--primary-color, #2c97de);
}
.application-form .form-check .form-check-input:focus {
  box-shadow: 0 0 0 3px rgba(44, 151, 222, 0.1);
  outline: none;
}
.application-form .form-check .form-check-label {
  margin-bottom: 0;
  cursor: pointer;
  line-height: 1.4;
  font-size: 1rem;
  color: var(--text-color, #565758);
}
.application-form .alert {
  background: var(--card-bg, #ffffff);
  border: 1px solid var(--border-color, #e2ebf1);
  color: var(--text-color, #565758);
  border-radius: 0.1875rem;
}
.application-form .alert-info {
  background: rgba(44, 151, 222, 0.1);
  border-color: rgba(44, 151, 222, 0.3);
  color: var(--primary-color, #2c97de);
}
.application-form .button-group {
  margin-top: 3.75rem;
  padding-top: 1.875rem;
  border-top: 1px solid var(--border-color, #e2ebf1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}
@media (max-width: 43.75em) {
  .application-form .button-group {
    flex-direction: column;
    gap: 0.625rem;
  }
  .application-form .button-group .btn {
    width: 100%;
  }
}
.application-form .btn {
  border-radius: 0.1875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.75rem 1.875rem;
  font-size: 1rem;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease-in-out;
  border: 1px solid transparent;
}
.application-form .btn .spinner-border {
  width: 1rem;
  height: 1rem;
}
.application-form .btn-primary {
  background-color: var(--primary-color, #2c97de);
  border-color: var(--primary-color, #2c97de);
  color: #ffffff;
  box-shadow: 0 2px 4px rgba(44, 151, 222, 0.2);
}
.application-form .btn-primary:hover:not(:disabled) {
  background-color: var(--secondary-color, #218ad0);
  border-color: var(--secondary-color, #218ad0);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(44, 151, 222, 0.3);
}
.application-form .btn-primary:disabled {
  background-color: var(--text-secondary, #697d90);
  border-color: var(--text-secondary, #697d90);
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}
.application-form .btn-secondary {
  background-color: transparent;
  border-color: var(--text-secondary, #697d90);
  color: var(--text-secondary, #697d90);
}
.application-form .btn-secondary:hover:not(:disabled) {
  background-color: var(--text-secondary, #697d90);
  color: #ffffff;
  transform: translateY(-1px);
}
.application-form .btn-outline-primary {
  background-color: transparent;
  border-color: var(--primary-color, #2c97de);
  color: var(--primary-color, #2c97de);
}
.application-form .btn-outline-primary:hover:not(:disabled) {
  background-color: var(--primary-color, #2c97de);
  color: #ffffff;
  transform: translateY(-1px);
}
.application-form .coordinate-selected-card {
  background: rgba(44, 151, 222, 0.05);
  border: 1px solid rgba(44, 151, 222, 0.2);
  border-radius: 0.1875rem;
  padding: 0.75rem;
  transition: all 0.3s ease-in-out;
}
.application-form .coordinate-selected-card:hover {
  border-color: rgba(44, 151, 222, 0.3);
  box-shadow: 0 2px 8px rgba(44, 151, 222, 0.1);
}
.application-form .coordinate-selected-card .coordinate-info {
  flex: 1;
}
.application-form .coordinate-selected-card .coordinate-info .coordinate-label {
  color: var(--text-color, #565758);
  font-size: 1rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}
.application-form .coordinate-selected-card .coordinate-info .coordinate-values {
  font-size: 1.1rem;
  color: var(--text-color, #565758);
  font-weight: 600;
}
.application-form .coordinate-selected-card .coordinate-info .coordinate-values .coordinate-separator {
  margin: 0 0.625rem;
  color: var(--text-secondary, #697d90);
}

.application-form-container {
  background: #1f272e;
  min-height: calc(100vh - 150px);
  padding: 0;
  margin: 0;
}
.application-form-container .container-fluid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.875rem 0.75rem;
}
@media (min-width: 992px) {
  .application-form-container .col-lg-3 {
    flex: 0 0 25% !important;
    max-width: 25% !important;
  }
}
.application-form-container .mb-3 {
  margin-bottom: 1.5rem !important;
}
.application-form-container .form-label {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem !important;
}
.application-form-container .form-label.text-muted {
  color: #6c757d !important;
}
.application-form-container .fw-medium {
  font-weight: 500 !important;
  font-size: 1rem;
  color: #212529;
  line-height: 1.4;
}

@media (max-width: 43.75em) {
  .hero-section .hero-content {
    padding: 0.75rem 0.625rem;
  }
  .hero-section .hero-content h1 {
    font-size: 2rem;
  }
  .hero-section .hero-content .hero-description {
    font-size: 1rem;
    line-height: 1.5;
  }
  .hero-section.hero-dashboard-compact .hero-content {
    padding: 0.625rem 0.625rem;
  }
  .hero-section.hero-dashboard-compact .hero-content h1 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .hero-section.hero-dashboard-compact .hero-content .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 0.625rem;
  }
  .navbar .nav-link {
    padding: 0.5rem;
  }
  .footer nav {
    flex-direction: column;
    gap: 0.625rem;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .hero-section .hero-content {
    padding: 0.625rem 0.5rem;
  }
  .hero-section .hero-content h1 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .hero-section .hero-content .hero-description {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 0.625rem;
  }
  .hero-section .hero-content .hero-subtitle {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
  }
  .hero-section .hero-cards .card {
    margin-bottom: 0.625rem;
  }
  .hero-section .hero-cards .card-body {
    padding: 0.625rem;
  }
  .hero-section .hero-cards .card-title {
    font-size: 1rem;
  }
  .hero-section .hero-cards .card-text {
    font-size: 0.85rem;
  }
}
@media (max-width: 768px) {
  .modal-dialog {
    margin: 0.5rem;
    max-width: calc(100% - 1rem);
  }
  .modal-dialog.modal-lg {
    max-width: calc(100% - 1rem);
  }
  .modal-content {
    border-radius: 0.5rem;
  }
  .modal-body {
    padding: 1rem;
  }
  .modal-body.application-form-container {
    padding: 0.75rem 0.5rem;
  }
  .modal-header {
    padding: 1rem;
  }
  .modal-header .modal-title {
    font-size: 1.25rem;
  }
  .modal-footer {
    padding: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .modal-footer .btn {
    flex: 1 1 auto;
    min-width: 100px;
  }
}
@media (max-width: 768px) {
  .dashboard-stats .dashboard-card {
    margin-bottom: 1rem;
  }
  .dashboard-stats .dashboard-card .card-body {
    padding: 1.25rem;
  }
  .dashboard-stats .dashboard-card .card-title {
    font-size: 1.75rem;
  }
  .dashboard-stats .dashboard-card .card-text {
    font-size: 0.875rem;
  }
  .dashboard-stats .dashboard-card i.fs-1, .dashboard-stats .dashboard-card .fs-1 {
    font-size: 2rem !important;
  }
}
@media (max-width: 768px) {
  .navbar .navbar-brand img {
    height: 32px;
  }
  .navbar .navbar-collapse.show {
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: #1f272e !important;
    height: auto !important;
  }
  .navbar .navbar-nav .nav-item .nav-link {
    padding: 0.75rem 1rem;
    border-radius: 0.25rem;
    max-width: none;
    flex-wrap: nowrap;
  }
  .navbar .navbar-nav .nav-item .nav-link span {
    white-space: nowrap;
  }
  .navbar .navbar-nav .nav-item .nav-link:hover, .navbar .navbar-nav .nav-item .nav-link.active {
    background-color: rgba(255, 255, 255, 0.1);
  }
  .navbar .dropdown-menu {
    position: static !important;
    transform: none !important;
    border: none;
    margin-left: 1rem;
    margin-top: 0.5rem;
    background-color: rgba(255, 255, 255, 0.05);
  }
}
@media (max-width: 768px) {
  .application-form-container {
    padding: 0.75rem 0.25rem;
  }
  .application-form {
    padding: 0.5rem 0.375rem;
  }
  .application-form .row {
    margin-left: 0;
    margin-right: 0;
  }
  .application-form [class*=col-] {
    padding-left: 0.375rem;
    padding-right: 0.375rem;
  }
  .application-form .card .card-body {
    padding: 0.5rem 0.375rem;
  }
  .mb-4 {
    margin-bottom: 1rem !important;
  }
  .form-control, .form-select {
    font-size: 1rem;
    padding: 0.75rem;
  }
  .form-label {
    font-size: 0.8125rem;
    margin-bottom: 0.375rem;
  }
}
@media (max-width: 768px) {
  .btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .btn-group .btn {
    flex: 1 1 auto;
    min-width: auto;
  }
  .btn {
    min-height: 44px;
    padding: 0.75rem 1rem;
  }
  .btn-sm {
    min-height: 38px;
    padding: 0.5rem 0.75rem;
  }
}
@media (max-width: 768px) {
  .table-responsive {
    border: none;
  }
  .card .card-header {
    padding: 1rem;
  }
  .card .card-header h5, .card .card-header .h5 {
    font-size: 1.125rem;
  }
  .card .card-body {
    padding: 1rem;
  }
}
@media (max-width: 1200px) {
  .application-form-container .d-flex.gap-2 {
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .d-flex.gap-2, .d-flex.gap-3 {
    flex-wrap: wrap;
  }
  .py-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .px-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .container-fluid {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  .hero-section {
    min-height: 300px !important;
    padding: 0.625rem 0 !important;
  }
  .hero-section.hero-dashboard-compact {
    min-height: 120px !important;
    padding: 0.5rem 0 !important;
  }
  .hero-section.hero-compact {
    min-height: 180px !important;
    padding: 0.625rem 0 !important;
  }
}
@media (max-width: 768px) {
  .application-form .d-flex.justify-content-around {
    flex-direction: column;
    gap: 0.75rem;
  }
  .application-form .d-flex.justify-content-around .btn {
    width: 100%;
  }
  .application-form .d-flex.justify-content-around .btn.btn-lg {
    padding: 0.75rem 1rem;
    font-size: 1rem;
  }
  .terms-container {
    height: 500px !important;
    max-height: 60vh;
  }
}
@media (max-width: 576px) {
  .modal-dialog {
    margin: 0.25rem;
    max-width: calc(100% - 0.5rem);
  }
  .modal-body {
    padding: 0.75rem;
  }
  .dashboard-card .card-body {
    padding: 1rem !important;
  }
  .dashboard-card .card-title {
    font-size: 1.5rem !important;
  }
  .btn-group {
    flex-direction: column;
  }
  .btn-group .btn {
    width: 100%;
  }
  .application-form .btn {
    font-size: 0.9rem;
    padding: 0.65rem 0.85rem;
  }
}

/*# sourceMappingURL=main.css.map */
