

body{
   min-height: 100vh;
    background: linear-gradient(135deg, #0f4c81 0%, #1f6fb2 100%);
    font-family: "Segoe UI", Roboto, sans-serif;
    margin: 0;
    padding: 0;
}
#loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

#loading-overlay.hidden {
  display: none;
}

a.link{
  text-decoration: none;
  color: #fff;
  padding-left: 20px;
}
.alert-info-2 {
    color: #055160;
    background-color: #cff4fc;
    border-color: #b6effb;
}
.hd{

  display: none;

}

.link{

  color: blue;

  cursor: pointer;

}

.pointer{
  cursor: pointer;
}

.button-container {
  display: flex;       /* makes children (buttons) line up horizontally by default */
  gap: 10px;           /* space between buttons */
  justify-content: flex-start; /* align buttons to the left */
  align-items: center; /* vertically center the buttons if they have different heights */
}


/* --- GLOBAL BRAND IDENTITY --- */
:root {
    --uipe-navy: #003366;
    --uipe-gold: #f1c40f;
    --success-soft: rgba(25, 135, 84, 0.1);
}

.bg-navy { background-color: var(--uipe-navy) !important; }
.text-navy { color: var(--uipe-navy) !important; }
.bg-success-soft { background-color: var(--success-soft) !important; }

/* --- GLOBAL BUTTON STYLE --- */
.btn-navy {
    background-color: var(--uipe-navy);
    color: #ffffff;
    border: none;
    transition: all 0.3s ease;
}
.btn-navy:hover {
    background-color: #002244;
    color: var(--uipe-gold);
    transform: translateY(-1px);
}
/* --- UIPE OUTLINE NAVY BUTTON --- */
.btn-outline-navy {
    color: var(--uipe-navy) !important;
    border: 2px solid var(--uipe-navy) !important;
    background-color: transparent !important;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-outline-navy:hover {
    background-color: var(--uipe-navy) !important;
    color: #ffffff !important; /* White text on Navy background */
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 51, 102, 0.2);
}

/* Ensure the icon inside has space */
.btn-outline-navy i {
    margin-right: 8px;
}

/* --- REUSABLE SECTION DIVIDER (The Line Cut) --- */
.section-divider {
    display: flex;
    align-items: center;
    margin: 25px 0;
}
.section-divider h2 {
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: #ffffff; /* Contrast for your blue gradient background */
    padding-right: 15px;
    margin: 0;
    white-space: nowrap;
    text-transform: uppercase;
}
.section-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
