/* Emergency Bar Styles */
.emergency-bar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 16px;
  margin: 20px auto;
  width: 98%;
  max-width: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.emergency-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.emergency-number {
  font-size: 2rem;
  font-weight: bold;
  color: #ff6b35;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.emergency-label {
  font-size: 0.9rem;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}
