/* Top Banner Styles */
.top-banner {
    background-color: #0A4697; /* Deep blue background */
    padding-top: 1.2rem !important;
    padding-bottom: 1.2rem !important;
    width: 100%;
    margin: 0;
    line-height: 1;
}

.top-banner-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.top-banner-nav {
    display: flex;
    gap: 20px;
}

.top-banner-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #FFCCCB; /* Light pink color for text */
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #F3471F; /* Firecracker red border */
    border-radius: 50px; /* Makes it an oval shape */
    padding: 5px 15px; /* Add some padding for better appearance */
    display: inline-block; /* Needed for the padding to work properly */
}

.top-banner-link:hover {
    color: #FFFFFF;
    background-color: rgba(243, 71, 31, 0.2); /* Slight red background on hover */
    transform: scale(1.05); /* Slight grow effect */
}

@media (max-width: 768px) {
    .top-banner-container {
        justify-content: space-between;
        padding: 0 10px;
    }
    
    .top-banner-nav {
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .top-banner-container {
        justify-content: space-between;
        width: 100%;
        padding: 0 10px;
    }
    
    .top-banner-nav:first-child {
        margin-right: auto; /* Push to far left */
    }
    
    .top-banner-nav:last-child {
        margin-left: auto; /* Push to far right */
    }
    
    .top-banner-link {
        font-size: 12px; /* Smaller text on mobile */
        white-space: nowrap; /* Prevent text wrapping */
        padding: 4px 10px; /* Smaller padding on mobile */
        border-width: 1.5px; /* Slightly thinner border on mobile */
    }
}
