/* Primary background color / gradient for buttons */
.primary-bg-color {
    background: linear-gradient(90deg, #0891B2 100%, #06B6D4 0%);
    color: #fff;
    transition: 0.3s;
}

.primary-bg-color-subtle {
    background: linear-gradient(90deg, #e0f7fb, #ccf4fa);
    color: #036473;
    border: none;
}

.primary-bg-color:hover {
    opacity: 0.9;
}

.primary-text-color {
    color: #0891B2 !important;
}

.pagination {
    justify-content: right;
}

.page-link {
    color: #0891B2;
    border-radius: 6px;
}

.page-item.active .page-link {
    background: linear-gradient(90deg, #0891B2 100%, #06B6D4 0%);
    border-color: #0891B2;
    color: #fff;
}

.page-link:focus {
    box-shadow: none;
}

/* ------------------ header styles on signup page --------------------- */
.MainHeader {
    background: #ffffff;
    width: 100%;
    position: relative;
    z-index: 100;
    border-bottom: 1px solid #e6e6e6;
}

/* Navbar spacing (matches dev-site) */
.MainHeader .navbar {
    padding: 8px 0;
}

/* Logo container — key for visual balance */
.MainHeader .navbar-brand {
    height: 100px;
    display: flex;
    align-items: center;
    margin-right: 15px;
}

/* Logo image fills container properly */
.MainHeader .navbar-brand img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

/* 🔧 FIX 1: Vertically center nav items relative to logo */
.MainHeader .navbar-collapse {
    display: flex;
    align-items: center;
    height: 100%;
}

/* Nav list alignment */
.MainHeader .navbar-nav {
    align-items: center;
}

/* Nav links — font + spacing matched to dev-site */
.MainHeader .nav-link {
    font-family: "Raleway", sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #282b2d;
    padding: 4px 10px;
    margin-right: 27px;
    white-space: nowrap;
}

/* Hover color */
.MainHeader .nav-link:hover {
    color: #03a8d3;
}

/* Remove extra margin on last item */
.MainHeader .navbar-nav .nav-item:last-child .nav-link {
    margin-right: 0;
}

/* Login button */
.MainHeader .loginbtn,
.MainHeader .btn-primary {
    background: rgb(3, 168, 211);
    border: none;
    border-radius: 999px;
    padding: 8px 22px;
    font-size: 15px;
    font-weight: 500;
    font-family: "Raleway", sans-serif;
}
/* ------------------ Header dropdown (hover based, dev-site style) ------------------ */

/* Enable hover dropdown (desktop) */
.MainHeader .nav-item.dropdown:hover > .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Dropdown container */
.MainHeader .dropdown-menu {
    display: none;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    padding: 10px 0;
    background: #ffffff;
    border: none;
    border-radius: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(6px);
    transition: all 0.2s ease-in-out;
    z-index: 999;
}

/* Dropdown items */
.MainHeader .dropdown-item {
    font-family: "Raleway", sans-serif;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 22px;
    color: #282b2d;
    white-space: normal;
}

/* Hover & active state (blue text like dev-site) */
.MainHeader .dropdown-item:hover,
.MainHeader .dropdown-item.active {
    background: transparent;
    color: #03a8d3;
}

/* Dropdown arrow (Font Awesome style like dev-site) */
.MainHeader .nav-link.dropdown-toggle::after {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 600;
    border: none;
    margin-left: 6px;
    vertical-align: middle;
}
