/* Language Switch Banner */
.lang-switch-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #f8f9fa;
  border-top: 1px solid #dee2e6;
  padding: 15px 20px;
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.lang-switch-banner.show {
  transform: translateY(0);
}

.lang-switch-banner-content {
  display: flex;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  padding: 0 20px;
}

.lang-switch-banner-text {
  margin-right: 20px;
  font-size: 16px;
  color: #333;
}

.lang-switch-banner-buttons {
  display: flex;
  gap: 10px;
}

.lang-switch-banner-btn {
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.2s;
}

.lang-switch-banner-btn-yes {
  background-color: #007bff;
  color: white;
}

.lang-switch-banner-btn-yes:hover {
  background-color: #0056b3;
}

.lang-switch-banner-btn-no {
  background-color: #6c757d;
  color: white;
}

.lang-switch-banner-btn-no:hover {
  background-color: #545b62;
}

.lang-switch-banner-close {
  margin-left: auto;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #6c757d;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lang-switch-banner-close:hover {
  color: #333;
}

/* Responsive design */
@media (max-width: 768px) {
  .lang-switch-banner-content {
    flex-direction: column;
    text-align: center;
  }
  
  .lang-switch-banner-text {
    margin-right: 0;
    margin-bottom: 10px;
  }
  
  .lang-switch-banner-buttons {
    width: 100%;
    justify-content: center;
  }
}