/* Controls styles */
.controls {
    background: var(--panel);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 32px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    animation: fadeInUp 0.8s ease 0.2s both;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  }
  
  .controlRow {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: flex-end;
    margin-bottom: 12px;
  }
  
  .controlRow:last-child {
    margin-bottom: 0;
  }
  
  .field {
    flex: 1 1 220px;
    min-width: 180px;
  }
  
  label {
    display: block;
    font-size: 12px;
    color: var(--accent);
    margin-bottom: 6px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  input, select, button {
    font: inherit;
    color: var(--text);
    width: 100%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    padding: 12px;
    outline: none;
    transition: all 0.3s;
  }
  
  input:focus, select:focus, button:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(108,156,255,0.3);
    transform: translateY(-1px);
  }
  
  button {
    cursor: pointer;
    background: rgba(108,156,255,0.25);
    border-color: rgba(108,156,255,0.5);
    font-weight: 600;
  }
  
  button:hover {
    background: rgba(108,156,255,0.35);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(108,156,255,0.4);
  }
  
  button.secondary {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.15);
  }
  
  button.secondary:hover {
    background: rgba(255,255,255,0.15);
  }
  
  button.danger {
    background: rgba(255,107,107,0.25);
    border-color: rgba(255,107,107,0.5);
  }
  
  button.danger:hover {
    background: rgba(255,107,107,0.35);
    box-shadow: 0 4px 12px rgba(255,107,107,0.4);
  }
  
  button.active {
    background: rgba(124,255,178,0.3);
    border-color: rgba(124,255,178,0.6);
  }
  
  button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }
  
  .inlineBtn {
    flex: 0 0 auto;
    min-width: 100px;
  }
  