.btns-menu{
    margin-right: 6px;
    padding-left: 6px;
    padding-right: 6px;
    padding-top: 0px;
    border-radius: 4px;
    background: #858796;
    border-style: none;
}

.btns-menu:disabled {
    background: #c1c3d1; /* Světlejší barva pro neaktivní tlačítko */
    cursor: not-allowed; /* Změna kurzoru na zakázaný */
    opacity: 0.9; /* Jemný efekt průhlednosti */
}
  
.btn-icons-menu {
    margin-top: 6px;
    font-size: 16px;
    color: #ffffff;
}
  
.btns-menu:hover {
    background-color: var(--buttons-hover-backcolor);
}

.myborder {
    border-radius: 4px;
    border: 1px solid rgb(228,228,228);
    outline: none;
}

.myselect-card {
  cursor: pointer;
  padding-left: 4px;
  padding-bottom: 4px;
  padding-top: 4px;
  font-size: 13px;
}

.navi-cards {
  margin-bottom: 5px;
  margin-top: 5px;
}

.div-header-cards {
  margin-bottom: 3px;
}
.header-cards {
  color: var(--bs-gray-600);
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 0px;
}

.sub-header-cards {
  font-size: 14px;
  margin-bottom: 5px;
}

.navi-cards-body {
  padding: 10px;
}

.navi-cards.hidden-card {
  display: none !important;
}

.navi-input {
    font-size: 13px;
    flex: 1; /* Flexibilně se přizpůsobí dostupnému prostoru */
    min-width: 50px; /* Nastavení minimální šířky */
    max-width: 100%; /* Zabrání přetékání */  
}

.navi-input-search {
  flex: 1;
  font-size: 13px;
}

.myradio {
    cursor: pointer;
    width: 15px;
    height: 15px;
    margin-right: 3px;
    margin-left: 2px;
}

input[type="radio"] {
    /* remove standard background appearance */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    /* create custom radiobutton appearance */
    display: inline-block;
    width: 15px;
    height: 15px;
    padding: 2px;
    /* background-color only for content */
    background-clip: content-box;
    border: 1px solid #bbbbbb;
    background-color: #e7e6e7;
    border-radius: 50%;
  }
  
  /* appearance for checked radiobutton */
  input[type="radio"]:checked {
    background-color: #2a80c2
  }

/*
.myradio:hover {
    outline: 2px solid #007bff; 
    transition: outline 0.2s ease-in-out;
}
*/

.mydot {
    cursor: pointer;
    width: 10px;
    height: 10px;
    background-color: #c4c4c4; /* Defaultně inactive */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.mydot.active {
    background-color: #56cc9d; /* Barva pro aktivní stav */
    width: 12px;
    height: 12px;
}

/*
select.myselect-card {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 1px solid #bbbbbb;
    border-radius: 4px;
    background-color: #e7e6e7;
    color: #000;
    padding: 5px 10px;
    width: 100%;
    box-sizing: border-box;
  }
  

  select.myselect-card option:checked {
    background-color: #2a80c2; 
    color: #fff; /* Barva textu 
  }

  select.myselect-card option:hover {
    background-color: #2a80c2;
    color: #fff;
  }
    */