﻿
.navbar {
    height: 45px; /* Set a fixed height */
    line-height: 45px; /* Aligns text properly */
}

header {
    background-color: white;
}

    header div:first-child { /* Marquee container */
        height: 25px;
        line-height: 25px;
    }

marquee {
    font-size: 14px;
}

header img {
    width: 150px; /* Reduce logo size */
    display: block;
    margin: 5px auto; /* Centered */
}

.navbar {
    height: 40px; /* Reduce navbar height */
    line-height: 40px;
    padding: 0 10px; /* Reduce padding */
}

.navbar-nav .nav-item {
    margin-left: 15px; /* Adjust spacing */
}

.navbar-nav .nav-link {
    font-size: 14px; /* Slightly smaller font */
    padding: 5px 10px;
}
/* Navbar links */
.nav-custom {
    color: white !important;
    font-size: 14px;
    font-weight: 600;
    padding: 5px 10px;
    transition: all 0.3s ease-in-out;
}

    /* Hover effect */
    .nav-custom:hover {
        background-color: #ffff !important;
        color: #7004bc !important;
        border-radius: 5px;
        padding: 5px 12px;
    }


