/* Custom styles for NotificationManager Examples */
/* Demo Form */
.demo-form {
  max-width: 500px;
  padding: 1.5rem;
  margin: 0 auto;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 6px;
}
.demo-form .form-group {
  margin-bottom: 1.25rem;
}
.demo-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text);
}
.demo-form .radio-group {
  display: flex;
  gap: 1.5rem;
}
.demo-form .radio-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  cursor: pointer;
}
.demo-form .radio-group input[type="radio"] {
  margin: 0;
}
/* Upload Demo */
.upload-demo {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 6px;
}
.upload-demo input[type="file"] {
  flex: 1;
}
/* Position Grid */
.position-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.position-grid .btn {
  width: 100%;
}
/* Duration Table */
.duration-table {
  overflow-x: auto;
}
.duration-table table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  overflow: hidden;
}
.duration-table th,
.duration-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}
.duration-table th {
  background: var(--surface);
  font-weight: 600;
  color: var(--text);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.duration-table tr:last-child td {
  border-bottom: none;
}
.duration-table td:nth-child(2) {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.875rem;
}
.duration-table td:nth-child(3) {
  color: var(--text-secondary);
  font-size: 0.875rem;
}
/* Badge */
.badge {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-left: 0;
}
.badge:after {
  display: none;
}
.badge-success {
  background: #10b981;
  color: white;
}
.badge-danger {
  background: #ef4444;
  color: white;
}
.badge-warning {
  background: #f59e0b;
  color: white;
}
.badge-primary {
  background: #3b82f6;
  color: white;
}
.badge-secondary {
  background: #6b7280;
  color: white;
}
/* Responsive */
@media (max-width: 768px) {
  .position-grid {
    grid-template-columns: 1fr;
  }
  .upload-demo {
    flex-direction: column;
    align-items: stretch;
  }
  .duration-table {
    font-size: 0.875rem;
  }
  .duration-table th,
  .duration-table td {
    padding: 0.5rem;
  }
}