.header_css_v1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /*background-color: #2f3d3d;*/
    background-color: white;
    /*padding: 10px 20px;*/
    color: white;
    height:55px;
}

/* Left-hand side: Logo */
.logo {
    font-size: 24px;
    font-weight: bold;
    color: white;
    margin-top: 2px;
}

/* Right-hand side: Navigation Items */
.nav-items {
    display: flex;
    align-items: center;
    margin-right:10px;
}

.nav-items div {
    margin-left: 8px;
}

/* Language Dropdown */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    /*background-color: #008080;*/
    background-color: #45328e;
    color: white;
    padding: 8px 15px;
    font-size: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.dropbtn:after {
    content: "▼";
    margin-left: 10px;
    font-size: 10px;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: white;
    min-width: 200px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    padding: 12px;
    z-index: 1;
    border-radius: 8px;
    margin-top: 8px;
}

.dropdown-content p {
    font-weight: bold;
    margin-bottom: 10px;
}

.dropdown-content a {
    color: black;
    padding: 8px 12px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content::before {
    content: "";
    position: absolute;
    top: -10px;
    right: 20px;
    border-width: 10px;
    border-style: solid;
    border-color: transparent transparent white transparent;
}

/* Buttons: Login */
.button {
    /*background-color: #008080;*/
    background-color: #45328e;
    color: white;
    padding: 8px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 12px;
}

.button:hover {
    background-color: #006666;
}

/* Search Button and Input */
.search-container {
    position: relative;
}

.search-btn {
    background-color: #f1f1f1;
    border-radius: 50%;
    border: none;
    padding: 8px;
    cursor: pointer;
/*    margin-left: 10px;*/
}

.search-input {
    display: none; /* Hidden by default */
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-left: 10px;
    width: 200px; /* Width of the search input */
    transition: width 0.3s; /* Smooth transition */
}

.search-input.active {
    display: inline-block; /* Show when active */
    width: 200px; /* Width of the search input */
}

.ddl_display_css_v1{
    color: black;
    margin-left: 10px;
}

.header_margin_css_v1{
    margin-top : 10px !important;
    border: 0; /* Remove the default border */
    height: 3px; /* Set height for the 'border' */
    background: grey; /* Color of the line */
    margin: 20px 0; /* Add some margin for spacing */
}

.logo-group {
    display: flex;
    align-items: center;
}

.logo-group img {
    height: 50px;
    margin-right: -20px;
}
        
.separator {
    height: 40px;
    width: 1px;
    background-color: #ccc;
    margin: 0 15px;
}

.solingo {
    display: flex;
    align-items: center;
}

.solingo img {
    height: 60px;
    margin-right: 30px;
    margin-top:-7%; 
}

.header_css_telco {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    border-bottom: 1px solid #ccc;
}
