.language-switcher {
   position: relative;
   display: inline-block;
   min-width: 150px;
}

.dropdown-button {
   background: #f8f9fa;
   border: 1px solid #dee2e6;
   padding: 8px 16px;
   cursor: pointer;
   display: flex;
   align-items: center;
   justify-content: space-between;
   border-radius: 4px;
   transition: all 0.2s ease;
}

.dropdown-button:hover {
   background: #e9ecef;
}

.dropdown-arrow {
   margin-left: 8px;
   transition: transform 0.2s ease;
}

.language-switcher.open .dropdown-arrow {
   transform: rotate(180deg);
}

.dropdown-menu {
   position: absolute;
   top: 100%;
   left: 0;
   right: 0;
   background: white;
   border: 1px solid #dee2e6;
   border-top: none;
   border-radius: 0 0 4px 4px;
   box-shadow: 0 2px 8px rgba(0,0,0,0.1);
   z-index: 1000;
   max-height: 0;
   overflow: hidden;
   transition: max-height 0.3s ease;
}

.language-switcher.open .dropdown-menu {
   max-height: 300px;
}

.lang-option {
   display: block;
   padding: 10px 16px;
   text-decoration: none;
   color: #495057;
   transition: background-color 0.2s ease;
   border-bottom: 1px solid #f1f3f4;
}

.lang-option:hover {
   background: #f8f9fa;
}

.lang-option.active {
   background: #007bff;
   color: white;
}