/* Navigation Buttons - Shared Styles for all admin pages */

.card-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.top-actions {
  margin-bottom: 24px;
  justify-content: flex-start;
}

.btn-large {
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
  border: 1px solid rgba(15, 118, 110, 0.2);
  margin: 0;
  color: #fff;
}

.btn-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.35);
  filter: brightness(1.05);
}

.btn-large .btn-icon {
  font-size: 20px;
  line-height: 1;
  display: inline-block;
}

.btn-large .btn-text {
  line-height: 1.2;
}

/* Different colors for different buttons */
.btn-large:nth-child(1) {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
  border-color: rgba(30, 64, 175, 0.2);
}

.btn-large:nth-child(1):hover {
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.35);
}

.btn-large:nth-child(2) {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
  border-color: rgba(5, 150, 105, 0.2);
}

.btn-large:nth-child(2):hover {
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.35);
}

.btn-large:nth-child(3) {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.25);
  border-color: rgba(124, 58, 237, 0.2);
}

.btn-large:nth-child(3):hover {
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.35);
}

.btn-large:nth-child(4) {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.25);
  border-color: rgba(217, 119, 6, 0.2);
}

.btn-large:nth-child(4):hover {
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.35);
}

/* Responsive */
@media (max-width: 768px) {
  .card-actions {
    flex-direction: column;
  }

  .btn-large {
    width: 100%;
    justify-content: center;
  }
}
