/* Primary button - dark colored */
.btn-primary {
    background-color: #2c3e50;
    color: white;
    padding: 6px 14px;
    border: 1px solid #1a2530;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
  }
  
  .btn-primary:hover {
    background-color: #34495e;
  }
  
  .btn-primary:disabled {
    background-color: #95a5a6;
    cursor: not-allowed;
  }
  
  /* Secondary button */
  .btn-secondary {
    /* Similar structure with different colors */
  }