/*  Pokud bychom chtěli kompaktnější footer

footer {
  font-size: 0.9rem;
}

footer p {
  margin-bottom: 0.25rem;
}

footer h5 {
  margin-bottom: 0.5rem;
}

footer hr {
  margin: 0.5rem 0;
} */

/* ----- select nad dashboard calendarem ------ */
.resource-filter-card {
    background: #fff;
    padding: 12px 16px;
    border-radius: 14px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    
    /* display: inline-block; */
    display: flex;
    align-items: center;   /* vertikální zarovnání */
    gap: 16px;             /* mezera mezi label a select */    
}

.resource-filter-label {
    display: block;
    /*font-size: 12px;*/
    font-weight: 600;
    color: var(--color-secondary);
    /* margin-bottom: 6px; */
    margin: 0;             /* zruší spodní margin */
    white-space: nowrap;   /* zabrání zalomení textu */    
}


.resource-select-wrapper {
    /* position: relative;
    display: inline-block; */
    position: relative;
    flex: 1;       /* select zabere zbytek místa */    
    width: 100%;    
}

.resource-select {
    appearance: none;
    -webkit-appearance: none;

    /* width: 100%; */

    border: 2px solid #cfd8dc;
    border-radius: 14px;

    padding: 6px 38px 6px 14px; /* místo pro šipku */
    font-weight: 600;

    /* background-color: #f5f7f8; */
    /* color: #6c7a89; */
    color: var(--color-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
}

.resource-select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(155, 89, 182, 0.2);
}

/* Ikona */
.select-icon {
    /* position: absolute; */
    position: relative;
    right: 24px;
    /*top: 50%;
    transform: translateY(-50%);*/
    pointer-events: none; /* ikona je pak "neviditelná pro ukazatel myši, ten pak vidí select pod */

    color: #9aa6af;
    font-size: 13px;
}



.page-wrapper {
  background-color: #f8f9fa; /* světle šedé pozadí */
  min-height: 100vh;
  padding: 2rem 0;
}

.page-wrapper .content {
  max-width: 1200px;
  margin: 0 auto;
}

/*-----------------------------
Úpravy pro nabídku infuzí
--------------------------*/
.btn-circle {
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;

  padding: 0;

  border-radius: 50% !important;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  line-height: 1;
}

/*-----------------------------
úprava modálů
--------------------------------*/
.modal-backdrop {
  z-index: 1040 !important;
}
.modal {
  z-index: 1050 !important;
}
.modal-dialog {
  z-index: 1060 !important;
}

/* ------------------------------------------
   🧭 Styl pro tříkrokový admission modal wizard
------------------------------------------ */


.admission-step {
  transition: opacity 0.3s ease-in-out;
}

/* Když krok není aktivní */
.admission-step.d-none {
  opacity: 0;
  pointer-events: none;
}

/* Wizard progress bar nahoře */
.admission-progress {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  position: relative;
}

.admission-progress::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 10%;
  right: 10%;
  height: 3px;
  background-color: #dee2e6; /* šedý proužek pozadí */
  z-index: 1;
}

/* Každý krok v progress baru */
.admission-step-indicator {
  position: relative;
  z-index: 2;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: #dee2e6;
  color: #6c757d;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}

/* Aktivní krok */
.admission-step-indicator.active {
  background-color: #6f42c1; /* TopMedica fialová */
  color: #fff;
  box-shadow: 0 0 5px rgba(111, 66, 193, 0.5);
}

/* Dokončený krok */
.admission-step-indicator.completed {
  background-color: #28a745;
  color: #fff;
}

/* Popisek pod indikátorem */
.admission-step-label {
  text-align: center;
  font-size: 0.8rem;
  margin-top: 0.3rem;
  color: #6c757d;
}

.admission-step-label.active {
  color: #6f42c1;
  font-weight: 500;
}

/* Tlačítka modalu */
#admissionModal .modal-footer .btn-primary {
  min-width: 120px;
}
