.dev-tools {
    position: fixed;
    bottom: 10px;
    right: 12px;
    background: #2a2a2a;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
  }
  
  .dev-tools-row {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
  }
  
  .dev-tools-row:last-child {
    margin-bottom: 0;
  }
  
  .dev-button {
    padding: 5px 12px;
    border-radius: 4px;
    border: none;
    font-size: 12px;
    font-family: monospace;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #3a3a3a;
    color: #ffffff;
  }
  
  .dev-button:hover {
    background: #4a4a4a;
  }
  
  .dev-select {
    padding: 5px;
    border-radius: 4px;
    border: 1px solid #3a3a3a;
    background: #2a2a2a;
    color: white;
    font-family: monospace;
    font-size: 12px;
  }
  