/* Scrollable navigation wrapper */
.navigation-wrapper {
    overflow-x: visible; /* or just remove this line */
    white-space: normal; /* allow normal line breaking */
    max-width: 100%; /* optional, use full container */
}


/* Prevent wrapping inside nav */
#navigation {
    display: flex;
    flex-wrap: wrap; /* ✅ allow wrapping */
    gap: 20px;
    padding-left: 0; /* fixed typo */
    margin: 0;
    list-style: none;
}


#navigation li {
    flex: 0 0 auto;
}

#navigation a {
   display: block;
padding: 10px 15px;
white-space: nowrap;
text-decoration: none;
color: #efe7e7;
font-weight: 500;
transition: color 0.3s;
font-size: 18px; /* 👈 Add this line */
}

#navigation a:hover {
    color: #ffa200;
}

/* Optional scrollbar styles */
.navigation-wrapper::-webkit-scrollbar {
    height: 6px;
}
.navigation-wrapper::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 10px;
}
