.ag-timezone-switcher {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1000;
}

.timezone-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 25px;
  padding: 10px 15px;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  font-size: 14px;
  color: #333;
  transition: all 0.2s ease;
  position: fixed;
  z-index: 99;
  left: 20px;
  bottom: 25px;
}

.timezone-trigger:hover {
  background: #f8f8f8;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.timezone-icon {
  width: 16px;
  height: 16px;
  color: #666;
}

.timezone-label {
  font-weight: 500;
  white-space: nowrap;
}

.timezone-panel {
  position: absolute;
  bottom: 100%;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  min-width: 280px;
  margin-bottom: 55px;
  transform: translateY(20px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.timezone-panel.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.timezone-message {
  font-size: 12px;
  color: #666;
  margin-bottom: 10px;
  line-height: 1.4;
}

.timezone-controls {
  display: flex;
  gap: 10px;
  align-items: center;
}

.timezone-select {
  flex: 1;
  padding: 8px 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 13px;
}

.timezone-reset {
  padding: 8px 12px;
  background: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
  transition: background 0.2s ease;
}

.timezone-reset:hover {
  background: #e9e9e9;
}

@media (max-width: 768px) {
  .ag-timezone-switcher {
    bottom: 15px;
    right: 15px;
  }
  
  .timezone-panel {
    right: -5px;
    left: -5px;
    min-width: auto;
    width: calc(100vw - 100px);
  }
  
  .timezone-controls {
    flex-direction: column;
    gap: 8px;
  }
  
  .timezone-select,
  .timezone-reset {
    width: 100%;
  }
}