/* Hero Section */
.pending-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 3rem 2rem;
  margin-bottom: 2rem;
  border-radius: 15px;
  text-align: center;
  color: white;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.hero-content {
  max-width: 600px;
  margin: 0 auto;
}

.hero-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: pulse 2s infinite;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Stats Row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.stat-card-pending {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.stat-card-pending:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.stat-icon-pending {
  font-size: 2.5rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.stat-card-pending.pending .stat-icon-pending {
  background: linear-gradient(135deg, #ffd89b 0%, #19547b 100%);
  color: white;
}

.stat-card-pending.scheduled .stat-icon-pending {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.stat-card-pending.completed .stat-icon-pending {
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
  color: white;
}

.stat-value-pending {
  font-size: 2rem;
  font-weight: bold;
  color: #2d3748;
}

.stat-label-pending {
  color: #718096;
  font-size: 0.9rem;
}

/* Broadcasts Card */
.broadcasts-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.card-header-broadcasts {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-title {
  color: white;
  font-size: 1.5rem;
  margin: 0;
  display: flex;
  align-items: center;
}

.header-count {
  background: rgba(255,255,255,0.2);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  color: white;
  font-weight: bold;
}

/* Table Styles */
.table-container-broadcasts {
  padding: 1.5rem;
  overflow-x: auto;
}

.broadcasts-table {
  width: 100%;
  border-collapse: collapse;
}

.broadcasts-table thead {
  background: #f7fafc;
}

.broadcasts-table th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  color: #2d3748;
  border-bottom: 2px solid #e2e8f0;
}

.broadcasts-table td {
  padding: 1rem;
  border-bottom: 1px solid #e2e8f0;
}

.broadcasts-table tbody tr {
  transition: background-color 0.2s;
}

.broadcasts-table tbody tr:hover {
  background-color: #f7fafc;
}

/* Action Buttons */
.btn-action-group {
  display: flex;
  gap: 0.5rem;
}

.btn-edit-broadcast, .btn-delete-broadcast {
  padding: 0.5rem 1rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-edit-broadcast {
  background: #4299e1;
  color: white;
}

.btn-edit-broadcast:hover {
  background: #3182ce;
  transform: scale(1.05);
}

.btn-delete-broadcast {
  background: #f56565;
  color: white;
}

.btn-delete-broadcast:hover {
  background: #e53e3e;
  transform: scale(1.05);
}

/* Status Badge */
.status-badge-pending {
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.status-pending {
  background: #fef5e7;
  color: #d68910;
}

/* Empty State */
.empty-state-pending {
  text-align: center;
  padding: 4rem 2rem;
}

.empty-icon {
  font-size: 4rem;
  color: #cbd5e0;
  margin-bottom: 1rem;
}

.empty-state-pending h3 {
  color: #2d3748;
  margin-bottom: 0.5rem;
}

.empty-state-pending p {
  color: #718096;
  margin-bottom: 2rem;
}

.btn-create-broadcast {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  transition: transform 0.3s;
}

.btn-create-broadcast:hover {
  transform: scale(1.05);
  color: white;
}

/* Animations */
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Responsive */
@media (max-width: 768px) {
  .stats-row {
    grid-template-columns: 1fr;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .broadcasts-table {
    font-size: 0.85rem;
  }
  
  .btn-action-group {
    flex-direction: column;
  }
}
