/* News Ticker Styles */
.news-ticker-wrapper {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-bottom: 2px solid #0ea5e9;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  height: 40px;
  position: sticky;
  top: auto;
  z-index: 999;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 0 0 12px 12px;
  border-left: 2px solid #0ea5e9;
  border-right: 2px solid #0ea5e9;
}

.news-ticker-label {
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  padding: 0 15px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.5px;
  color: white;
  flex-shrink: 0;
  box-shadow: 2px 0 8px rgba(14, 165, 233, 0.3);
}

.news-icon {
  font-size: 18px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

.news-ticker {
  flex: 1;
  overflow: hidden;
  position: relative;
  padding: 0 15px;
  max-width: 600px;
}

.news-ticker-content {
  display: flex;
  align-items: center;
  gap: 20px;
  white-space: nowrap;
  animation: scroll-left 60s linear infinite;
}

.news-ticker-content:hover {
  animation-play-state: paused;
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.news-item {
  color: #e2e8f0;
  font-size: 13px;
  font-weight: 500;
}

.news-separator {
  color: #0ea5e9;
  font-size: 18px;
  font-weight: 700;
}

/* Quick Action Buttons */
.quick-action-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 20px;
  background: rgba(15, 23, 42, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.quick-action-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.quick-action-primary {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.quick-action-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.5);
}

.quick-action-secondary {
  background: rgba(30, 41, 59, 0.8);
  color: #e2e8f0;
  border-color: rgba(14, 165, 233, 0.3);
}

.quick-action-secondary:hover {
  background: rgba(14, 165, 233, 0.2);
  border-color: #0ea5e9;
  color: #0ea5e9;
  transform: translateY(-2px);
}

.btn-icon {
  font-size: 18px;
}

@media (max-width: 768px) {
  .news-ticker-wrapper {
    max-width: 95%;
    border-radius: 0 0 8px 8px;
  }
  
  .news-ticker-label span:not(.news-icon) {
    display: none;
  }
  
  .news-ticker-label {
    padding: 0 10px;
  }
  
  .news-ticker {
    padding: 0 10px;
  }
  
  .quick-action-buttons {
    flex-wrap: wrap;
    gap: 10px;
    padding: 15px 10px;
  }
  
  .quick-action-btn {
    font-size: 13px;
    padding: 10px 16px;
  }
}
