.timezone-schedule-display {
  border: 1px solid #e9ecef;
  border-radius: 8px;
  background: white;
  margin: 8px 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  max-width: 500px;
  overflow: hidden;
}

.support-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: #f8f9fa;
  border-bottom: 1px solid #e9ecef;
  cursor: pointer;
  transition: background-color 0.2s;
}

.support-summary:hover {
  background: #e9ecef;
}

.summary-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.summary-info {
  display: flex;
  flex-direction: column;
}

.summary-center {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 10px;
}

.number-voting {
  background: #f8f9fa;
  border-radius: 6px;
  padding: 4px;
}

.vote-container {
  display: flex;
  gap: 2px;
}

.vote-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  background: none;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 3px 6px;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 11px;
  min-width: 35px;
}

.vote-btn:hover {
  background: #e9ecef;
}

.vote-btn.upvote {
  color: #28a745;
  border-color: #28a745;
}

.vote-btn.upvote:hover {
  background: #d4edda;
}

.vote-btn.downvote {
  color: #dc3545;
  border-color: #dc3545;
}

.vote-btn.downvote:hover {
  background: #f8d7da;
}

.vote-arrow {
  width: 12px;
  height: 12px;
}

.vote-count {
  font-weight: bold;
  font-size: 11px;
}

.summary-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.phone-display {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.summary-info .phone-number {
  font-size: 14px;
  font-weight: bold;
  color: #333;
}

.phone-description {
  font-size: 12px;
  color: #666;
  font-weight: normal;
}

.quick-status {
  font-size: 12px;
  color: #666;
  margin-top: 2px;
  font-weight: 500;
}

.expand-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: 1px solid #ddd;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  color: #666;
  cursor: pointer;
  transition: all 0.2s;
}

.expand-btn:hover {
  background: #007cba;
  color: white;
  border-color: #007cba;
}

.expand-icon {
  width: 14px;
  height: 14px;
  transition: transform 0.2s;
}

.expand-btn.expanded .expand-icon {
  transform: rotate(180deg);
}

.support-details {
  padding: 16px;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}

.support-details.sliding {
  transition: max-height 0.3s ease-in-out;
}

.support-phone {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  padding: 12px;
  background: #007cba;
  color: white;
  border-radius: 6px;
}

.phone-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.phone-icon {
  width: 20px;
  height: 20px;
  opacity: 0.9;
}

.phone-details {
  display: flex;
  flex-direction: column;
}

.phone-number {
  font-size: 16px;
  font-weight: bold;
  margin: 0;
  line-height: 1.2;
}

.phone-label {
  font-size: 11px;
  opacity: 0.8;
  margin-top: 2px;
}

.region-info {
  text-align: center;
  margin-bottom: 10px;
}

.region-label {
  font-size: 12px;
  color: #666;
  margin-right: 6px;
}

.region-badge {
  display: inline-block;
  background: #28a745;
  color: white;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 10px;
  font-weight: bold;
  margin: 0 2px;
}

.timezone-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 13px;
}

.support-timezone,
.user-timezone {
  text-align: center;
  padding: 8px;
  background: #f8f9fa;
  border-radius: 4px;
}

.timezone-label {
  display: block;
  font-weight: 600;
  color: #495057;
  margin-bottom: 4px;
  font-size: 11px;
}

.current-time {
  font-size: 14px;
  font-weight: bold;
  color: #007cba;
}

.schedule-container {
  margin-bottom: 12px;
}

.time-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 8px;
  margin-bottom: 4px;
  background: #f8f9fa;
  border-radius: 4px;
  font-size: 13px;
}

.time-group:last-child {
  margin-bottom: 0;
}

.time-group.available {
  background: #d4edda;
  border: 1px solid #c3e6cb;
}

.group-days {
  font-weight: 600;
  color: #495057;
  font-size: 12px;
}

.group-hours {
  color: #007cba;
  font-weight: 500;
  font-size: 12px;
}

.group-hours.available {
  color: #155724;
  font-weight: bold;
}

.status-icon {
  font-size: 12px;
  margin-right: 4px;
}

.call-status {
  padding: 5px 0;
  border-radius: 4px;
  font-size: 13px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.call-status.open {
  background: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
}

.call-status.closed {
  background: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
}

.status-message {
  font-weight: bold;
}

.next-available {
  font-size: 11px;
  opacity: 0.8;
}

.call-status-mini {
  display: flex;
  align-items: center;
}

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #dc3545;
  animation: pulse 2s infinite;
}

.status-dot.open {
  background: #28a745;
}

@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.5; }
  100% { opacity: 1; }
}

@media (max-width: 768px) {
  .timezone-schedule-display {
    max-width: 100%;
    margin: 8px 0;
    padding: 12px;
  }
  
  .timezone-info {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  
  .support-phone {
    flex-direction: column;
    text-align: center;
    gap: 4px;
  }
  
  .phone-number {
    font-size: 16px;
  }
}