



  .ov-d3 {
    color: #595959;
  }
  .form-label {
    margin-bottom: 2px;
  }
  .form-control {
    border: 1px solid #ced4da;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    background-color: #F9FBFF;
  }
  
  /* Låste felt (readonly) */
  .form-control[readonly] {
    background-color: #F0F0F0;
    color: #4b5863;
    cursor: not-allowed;
  }
  
  /* Åpne/redigerbare felt */
  .form-control:not([readonly]) {
    background-color: #F9FBFF;
    color: #212529;
  }
  
  .form-select:disabled {
    background-color: #F0F0F0 !important;
    color: #4b5863;
    cursor: not-allowed;
    opacity: 1; /* ellers blir den ofte grået ut i Bootstrap */
  }
  .form-select:not(:disabled) {
    background-color: #F9FBFF;
    border: 1px solid #ced4da;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    color: #212529;
  }
  

.driftpilot-tabs {
  position: relative;
  display: flex;
  gap: 1.5rem;
  z-index: 1;
}

.driftpilot-tabs .tab-button {
  position: relative;
  background-color: transparent; /* Transparent bakgrunn */
  border: none;
  font-weight: 500;
  font-size: 1rem;
  color: #6c757d;
  padding: 0.5rem 0;
  cursor: pointer;
  z-index: 1;
  border-bottom: 3px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.driftpilot-tabs .tab-button:hover {
  color: #0d6efd;
}

.driftpilot-tabs .tab-button.active {
  color: #0d6efd;
  border-color: #0d6efd;
}

