@charset "UTF-8";
.lang-container {
  position: relative;
  display: inline-block;
  z-index: 10002; }

/* Trigger */
.lang-trigger {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #196e3f;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s ease;
  margin-right: 5px; }

.lang-trigger img {
  width: 26px;
  height: 26px;
  border-radius: 50%; }

/* Khi mở thì thành pill */
.lang-trigger.active {
  width: auto;
  padding: 6px 16px;
  border-radius: 30px;
  background: white;
  border: 2px solid black;
  gap: 8px;
  justify-content: flex-start; }

.lang-name {
  font-size: 16px;
  font-weight: 500; }

.arrow {
  font-size: 12px; }

/* Dropdown */
.lang-dropdown {
  position: absolute;
  top: 100%;
  margin-top: 6px;
  right: 10px;
  width: 180px;
  background: white;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  padding: 8px 0;
  z-index: 10003; }

.lang-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  cursor: pointer;
  transition: 0.2s; }

.lang-item img {
  width: 24px;
  height: 24px;
  border-radius: 50%; }

.lang-item:hover {
  background: #f5f5f5; }

.lang-item.active {
  background: #dce9e2;
  font-weight: 600; }

