:root {
  --sidebar-width: 200px;
  --card-radius: 12px;
  --main-bg: #f1f1f1;
  --sidebar-bg: #fff;
  --sidebar-border: #e7e7e7;
  --sidebar-text-none: #9AA6B2;
  --gray: #9AA6B2;
  --card-bg: #fff;
  --shadow: 0 4px 16px rgba(60,60,60,0.04), 0 1.5px 6px rgba(120,120,120,0.04);
  --active: #2652e4;
  --active-bg: #f8f9fb;
  --primary: #9AA6B2;
  --success: #22c55e;
  --danger: #ef4444;
  --info: #3b82f6;
  --bs-body-line-height:1;

}
html, body { height: 100%; margin: 0; padding: 0; }
body {
  min-height: 100vh;
  background: var(--main-bg);
  font-family: 'Barlow', Arial, sans-serif;
}
/* SIDEBAR */
.sidebar {
  width: var(--sidebar-width);
  background: var(--sidebar-bg);
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  border-right: 1.2px solid var(--sidebar-border);
  display: flex;
  flex-direction: column;
  z-index: 100;
  padding-bottom: 14px;
/*  box-shadow: 5px 1px 10px 0px rgb(60 60 60 / 37%);*/
}
.sidebar .logo {
  font-size: 1.17rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 24px 24px 20px 24px;
  color: var(--primary);
  border-bottom: 1px solid #eee; color: #2652e4;
}

.material-icons{color: #2652e4}
.sidebar .logo .material-icons { font-size: 1.3em;  }
.sidebar nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-top: 18px;
}
.sidebar nav a {
  text-decoration: none;
  color: #444c5c;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 5px 26px;
  font-size: 0.85rem;text-transform: uppercase;
  transition: background 0.12s, color 0.12s;

}
.sidebar nav a.active, .sidebar nav a:hover {
  background: var(--active-bg);
  color: var(--active);
  /*font-weight: 600;*/
}
.sidebar nav a:hover {
/*border: 1px #c9c5c5 solid;*/
}



.sidebar .section-title {
  font-size: 0.98rem;
  color: #9d9d9d;
  padding: 18px 26px 4px 26px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.sidebar .sidebar-footer {
  margin-top: 20px;
  padding: 0 24px;
}
.sidebar .sidebar-footer button {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: none;
  background: #f2f2f7;
  color: #222;
  font-weight: 600;
  font-size: 1rem;
  margin-top: 6px;
  cursor: pointer;
  transition: background 0.15s;
}
.sidebar .sidebar-footer button:hover {
  background: #e9e9f1;
}

/* MAIN LAYOUT */
.main-content {
  margin-left: var(--sidebar-width);
  min-height: 100vh;
  padding: 0 30px 30px 30px;
  position: relative;
}
/* TOPBAR */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 0 0 0;
  gap: 30px;
}
.breadcrumbs {
  color: #7d7d7d;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 7px;
}
.dashboard-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 5px;
}
.dashboard-desc {
  color: #606060;
  font-size: 1.06rem;
  font-weight: 400;
  margin-bottom: 8px;
}
.topbar-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.topbar-actions input[type="text"] {
  border: 1.2px solid #e7e7e7;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 1.06rem;
  width: 180px;
  outline: none;
  background: #fff;
}
.topbar-actions button {
  background: #fff;
  color: #ec4899;
  border: 1.3px solid #ec4899;
  border-radius: 8px;
  font-size: 1rem;
  padding: 6px 18px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.14s, color 0.14s;
}
.topbar-actions button:hover {
  background: #ec4899;
  color: #fff;
}
.topbar-icons .material-icons {
  font-size: 1.2rem;
  color: #bbb;
  margin-right: 6px;
  cursor: pointer;
  vertical-align: middle;
  transition: color 0.15s;
}
.topbar-icons .material-icons:hover {
  color: var(--info);
}
/* GRID DASHBOARD */
.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 32px 0 18px 0;
}

@media (max-width: 800px) {
  .dashboard-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.dashboard-grid1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 32px 0 18px 0;
}

@media (max-width: 800px) {
  .dashboard-grid1 {
    grid-template-columns: repeat(1, 1fr);
  }
}


.dashboard-card {
  background: var(--card-bg);
  box-shadow: var(--shadow);
  border-radius: var(--card-radius);
  padding: 20px 22px;
  position: relative;
  min-width: 0;border: 1px #c9c5c5 solid;box-shadow: 1px 2px 11px 0px rgba(60,60,60,0.11);
}
.dashboard-card .material-icons {
  position: absolute;
  right: 18px;
  top: 18px;
  background: #9E9E9E;
  color: #fff;
  border-radius: 10px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 3px 10px rgba(60,60,60,0.11);
}
.dashboard-card .card-title {
  color: #595959;
  font-size: 1.06rem;
  margin-bottom: 4px;
  font-weight: 500;
}
.dashboard-card .card-value {
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 7px;
  color: #18181b;
}
.dashboard-card .card-change {
  font-size: 0.97rem;
  font-weight: 500;
  margin-bottom: 0;
}
.dashboard-card .card-change.positive { color: var(--success);}
.dashboard-card .card-change.negative { color: var(--danger);}
/* ROW CARDS (CHARTS) */
.row-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 20px;
}
.card-section {
  background: var(--card-bg);
  border-radius: var(--card-radius);
  box-shadow: var(--shadow);
  padding: 18px 18px 16px 18px;
  /*min-width: 0;*/
  display: flex;
  flex-direction: column;
}
.card-section h3 {
  font-size: 1.17rem;
  font-weight: 700;
  margin: 0 0 3px 0;
  color: #222;
}
.card-section .desc {
  color: #848484;
  font-size: 0.8rem;
  margin-bottom: 9px;
}
.card-section .dummy-bar,
.card-section .dummy-line {
  margin-bottom: 8px;
}
.card-section .dummy-bar {
  width: 100%;
  height: 70px;
  background: repeating-linear-gradient(90deg, #22c55e 0 12%, #e5fbe2 12% 22%);
  border-radius: 7px;
}
.card-section .dummy-line {
  width: 100%;
  height: 70px;
  background: linear-gradient(180deg, #22c55e44 60%, #fff 100%);
  border-radius: 7px;
  position: relative;
  overflow: hidden;
}
.card-section .dummy-line:after {
  content: '';
  position: absolute;
  left: 10px; right: 10px; top: 25px; height: 2px;
  background: #22c55e;
  border-radius: 1px;
}
.card-section .meta {
  font-size: 0.94rem;
  color: #a7a7a7;
  margin-top: 6px;
  font-style: italic;
}
/* BOTTOM SECTION (Projects, Orders) */
.bottom-grid {
  display: grid;
  /**grid-template-columns: 2.5fr 1fr;*/
  gap: 18px;
  margin-top: 18px;
}
/* Projects Table */
.projects-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8rem;
}
.projects-table th, .projects-table td {
  padding: 3px 3px;
  text-align: left;
}
.projects-table th {
  color: #878787;
  font-weight: 300;
  /*background: #fafafa;*/
  font-size: 0.75rem;
  border-bottom: 1.2px solid #ededed;
}
.projects-table td {
  /*background: #fff;*/
  border-bottom: 1px solid #d9d9d9;
  vertical-align: middle;
}
.projects-table .completion-bar {
  height: 7px;
  background: #ececec;
  border-radius: 6px;
  overflow: hidden;
  margin-top: 7px;
  width: 80px;
}
.projects-table .completion-bar-inner {
  height: 100%;
  border-radius: 6px;
  background: var(--info);
  transition: width .2s;
}
/* Orders List */
.orders-list {
  margin: 0;
  padding: 0 0 0 4px;
  list-style: none;
  font-size: 0.99rem;
}
.orders-list li {
  margin-bottom: 17px;
  display: flex;
  align-items: flex-start;
  gap: 11px;
}
.orders-list .material-icons {
  font-size: 17px;
  margin-top: 2px;
  color: var(--success);
}
.orders-list .order-danger { color: var(--danger);}
.orders-list .order-info { color: var(--info);}
.order-date {
  font-size: 0.89em;
  color: #b0b0b0;
  font-style: italic;
}
/* Responsive */
@media (max-width: 1150px) {
  /**.dashboard-grid { grid-template-columns: 1fr 1fr; }*/
  .row-cards { grid-template-columns: 1fr; }
  .bottom-grid { grid-template-columns: 1fr; }
  .main-content { padding: 0 8px 18px 8px;}
}
@media (max-width: 1100px) {

      .dashboard-grid {
        //*grid-template-columns: none;*/
    }
  .sidebar {
    width: 36px; min-width: 36px;
    padding-left: 0; padding-right: 0; 
  }
  .sidebar .logo,
  .sidebar .section-title,
  .sidebar .sidebar-footer {
    display: none !important;
  }
  .sidebar nav a {
    justify-content: center;
    padding: 12px 0;
    font-size: 0; gap:0;
  }
  .sidebar nav a .material-icons {
    margin: 0;
    font-size: 28px;
  }
  .main-content { margin-left: 36px;}
}
@media (max-width: 600px) {
  .dashboard-title {font-size: 1.15rem;}
  .dashboard-card {padding: 10px 8px;}
  .card-section {padding: 8px 4px;}
  .projects-table {
  /*font-size: 10px;*/
}
.dashboard-card .material-icons {font-size: 1rem;border-radius: 3px; width: 20px; height: 20px;top: 34px;}
}

.alert {
  position: fixed;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;

  min-width: 300px;
  max-width: 90vw;

  border-radius: 12px;
  background: #FFFFFF;
  padding: 16px 24px;
  box-shadow: 0 6px 20px -5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 1px #9e9e9e solid;

  opacity: 0;
  transition: opacity 0.5s ease-in-out;

  display: flex;
  gap: 10px;
  align-items: center;
}

.alert.active {
  opacity: 1;
}
.alert .alert-content {
  display: flex;
  align-items: center;
}
.alert-content .check {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  min-width: 35px;
  background-color: #4070f4;
  color: #fff!important;
  font-size: 16px;
  border-radius: 15%;
}

.alert .material-icons {
  color: white!important;
}

.alert-content .message {
  display: flex;
  flex-direction: column;
  margin: 0 10px;
}
.message .text {
  font-size: 16px;
  font-weight: 400;
  color: #666666;
}
.message .text.text-1 {
  font-weight: 600;
  color: #333;
}
.alert .close {
  position: absolute;
  top: 10px;
  right: 15px;
  padding: 5px;
  cursor: pointer;
  opacity: 0.7;
}
.alert .close:hover {
  opacity: 1;
}
.alert .progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
}
.alert .progress:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background-color: #4070f4;
}
.progress.active:before {
  animation: progress 0.5s linear forwards;
}
@keyframes progress {
  100% {
    right: 100%;
  }
}
button {
color: #e91e63;

}
button:hover {
  /*background-color: #0e4bf1;*/
}
.alert.active ~ button {
  pointer-events: none;
}

/* Barevné varianty */
.alert.success .check, .alert.success .progress:before { background-color: #22c55e; }
.alert.absent .check, .alert.absent .progress:before { background-color: #eab308; }
.alert.danger .check, .alert.danger .progress:before { background-color: #ef4444; }
.alert.info .check, .alert.info .progress:before { background-color: #4070f4; }


.btn-outline-primary {
    --bs-btn-color: #e91e63;
    --bs-btn-border-color: #e91e63;
    --bs-btn-hover-color: #ffffff;
    --bs-btn-hover-bg: #e91e63;
    --bs-btn-hover-border-color: #e91e63;
    --bs-btn-focus-shadow-rgb: 233, 30, 99;
    --bs-btn-active-color: #0a0a0a;
    --bs-btn-active-bg: #e91e63;
    --bs-btn-active-border-color: #e91e63;
    --bs-btn-active-shadow: none;
    --bs-btn-disabled-color: #e91e63;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #e91e63;
    --bs-gradient: none;
}



:root {
    --primary-color: #4CAF50;
    --secondary-color: #f0f0f0;
    --border-radius: 5px;
    --padding: 0px;
}



input[type="date"] {

    padding: var(--padding);
    border: 1px solid var(--primary-color);
    border-radius: var(--border-radius);
    font-size: 16px;
    box-sizing: border-box;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    background-color: var(--primary-color);
    padding: 5px;
    border-radius: var(--border-radius);
}
/* From Uiverse.io by e-coders */ 
/* From Uiverse.io by SelfMadeSystem */ 
.btn {
  margin: 0.2rem;
  padding: 0.1rem 0.5rem;
  border-radius: 0.5rem;
  border: none;
  font-weight: 600;
  font-size: 0.8rem;
  cursor: pointer;
}

.btn kbd {
  margin: 0.25rem;
  padding: 0.125rem 0.5rem;
  border-radius: 0.25rem;
}

.btn-primary {
  background: linear-gradient(#1f5afe, #0f4cf5);
  color: white;
  box-shadow: inset 0pt 4pt 3pt -2pt #386fff, 0pt 4pt 5pt -3pt #0009;
  border-bottom: 2pt solid #083acd;
  transition: all 0.5s ease;
}

.btn-primary:hover {
  border-bottom: 4pt solid #083acd;
  translate: 0pt -1pt;
}
.btn-secondary {
  background: var(--secondary-color);
  color: black;
  border-bottom: 2pt solid #083acd;
  transition: all 0.5s ease;
}

.btn-secondary:hover {
  border-bottom: 4pt solid #083acd;
  translate: 0pt -1pt;
}

.btn-primary:active {
  box-shadow: inset 0pt 4pt 3pt -2pt #386fff, 0pt 4pt 5pt -3pt #0000;
  border-bottom: 1pt solid #083acd;
  translate: 0pt 0pt;
}

.btn-primary kbd {
  background-color: #3e6eff;
  box-shadow: inset 0pt -3pt 3pt -2pt #1f54f0, inset 0pt 3pt 3pt -2pt #658dff,
    0pt 2pt 2pt -2pt #0005, 0pt 0pt 0pt 2pt #0d47f0;
}

.btn-base {
  background: #386fff;
}



#panel-bg {
  position: fixed; left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.10); z-index: 900;
}
#edit-panel {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 400px;
  background: #fff;
  box-shadow: -4px 0 32px rgba(44,62,80,.15);
  border-radius: 24px 0 0 24px;
  z-index: 999;
  padding: 30px 28px 20px 28px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

#edit-panel h2 {
  font-size: 1.3em;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
  margin-top: 0;
  color: #21233b;
}

#close-edit-panel {
  position: absolute;
  top: 14px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2.1em;
  color: #b0b0b0;
  cursor: pointer;
  transition: color .15s;
  z-index: 1000;
}
#close-edit-panel:hover {
  color: #e91e63;
}

#edit-child-form {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-group {
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
}
.form-group label {
  font-size: 0.8em;
  font-weight: 500;
  margin-bottom: 0px;
  color: #919191;
  letter-spacing: 0.01em;
}

.form-group input,
.form-group select,
.form-group textarea {
  border-radius: 8px;
  border: 1px solid #ececec;
  background: #f7f8fc;
  padding: 8px 5px;
  font-size: 0.9em;
  font-weight: 600;
color: #616060;
  margin-top: 2px;
  /*transition: border-color .2s, background .2s;*/
}
.form-group input:focus,
.form-group textarea:focus {
  border: 1px solid #2652e4 !important;
  background: #fff !important;
  outline: none !important;
  box-shadow: none !important;color: #1a1a1a;
}
textarea { resize: vertical; min-height: 42px; }

.form-group:has(input:focus) label,
.form-group:has(select:focus) label,
.form-group:has(textarea:focus) label {
  color: #2652e4;
}



}



.mini-btn {
  display: inline-block; font-weight: 700;    padding: 0.3rem 0.65rem;
  padding: 3px 10px;
  color: #6c757d;
  background: #fff;
  border: 1px solid #6c757d!important;
  border-radius: 5px;
  cursor: pointer;
  margin-left: 7px;
  box-shadow: 0 2px 7px rgba(0,0,0,0.03);
  transition: color .15s, border-color .15s, background .18s;text-transform: uppercase;
  /*vertical-align: middle;
  outline: none;*/
}
.mini-btn:hover,
.mini-btn:focus {
  color: #fff;
  background: #6c757d;
  border-color: #b0b0b0;
}


.os-col-6 {
    flex: 0 0 50%;
    max-width: 50%;}

input.gear-input.cislo-bot, select.gear-input.velikost-sedaku{
  box-sizing: border-box;
  --p: .2rem;               /* padding */
  --ch: 2;                  /* ile znaków ma się miścić (domyślnie 2) */
  width: calc(var(--ch)*1ch + var(--p)*2 + 2px);
  padding: var(--p);
  text-align: center;
  font: 600 0.9rem/1.2 'Barlow', Arial, sans-serif;
  color: #111827;
  background: #e9ecef;
  border: 1px solid #cbd5e1;
  border-radius: .5rem;
  transition: border-color .2s, box-shadow .2s, background-color .2s;
}
input.gear-input.cislo-bot:hover, select.gear-input.velikost-sedaku:hover { border-color:#94a3b8; }
input.gear-input.cislo-bot:focus, select.gear-input.velikost-sedaku:focus {
  outline:0; border-color:#2563eb; box-shadow:0 0 0 .2rem rgba(37,99,235,.2);}
select.gear-input.velikost-sedaku{
  width: calc(var(--ch)*1ch + var(--p)*2 + 10px);
}

select, 
select:focus {
  width: 100%;
  padding: 5px 10px;
  border: 1.5px solid #edeef3;
  border-radius: 10px;
  background: #f7f8fa;
  font-size: 0.8rem;
  color: #282828;
  outline: none;
  box-shadow: none;
  transition: border 0.2s, box-shadow 0.2s;
  appearance: none; /* Chrome/Safari */
  -webkit-appearance: none; /* Safari */
  -moz-appearance: none; /* Firefox */
  margin-top: 2px;
  margin-bottom: 2px;
}

select:focus {
  border: 1.5px solid #c9c5c5;    /* zvýraznění na focus, barva jako tlačítko */
  background: #fff;
}

/* Volitelné: vlastní šipka */

#close-edit-panel {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #e91e63;
  color: #fff;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  padding: 0;
  font-size: 1.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(233,30,99,0.08);
  transition: background 0.15s;
}
#close-edit-panel:hover {
  background: #fff;
  color: #b91354;
  border: 1px solid #b91354;
}

.list-group-item {background-color: #f1f1f1!important}
.osoba__jmeno{
  font: 600 0.8rem/1.2 'Barlow', Arial, sans-serif;
  text-transform: uppercase;  
}

.osoba { position: relative; }

.osoba__udaje {
  position: absolute; 
  top: 100%; 
  left: 0; 
  margin-top: .4rem;
  display: none;
  min-width: 300px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: .5rem;
  padding: .5rem .6rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  z-index: 10;
}

.osoba__info {
  cursor: pointer;
}

/* zobraz po kliknutí */
.osoba.active .osoba__udaje {
  display: block;
}

.badge {
     border-radius: 5px;
     line-height: 1;
     padding: .25rem .5625rem; 
     font-size: 0.75rem!important;
     margin-left:1rem;text-transform: uppercase;
 }
 
 .badge-outline-primary {
    color: #595959;
    border: 1px solid #cbc5c5;
}

.badge.badge-pill {
    border-radius: 10rem;
}

.badge-outline-info {
    color: #2652e4;
    border: 1px solid #2652e4;
}

.badge-outline-danger {
    color: #f1536e;
    border: 1px solid #f1536e;
}

.badge-outline-success {
    color: #00c689;
    border: 1px solid #00c689;
}

.badge-outline-warning {
    color: #fda006;
    border: 1px solid #fda006;
}

@keyframes pulseInUse {
  0% {
        color: #f1536e;
    box-shadow: 0px 0px 0px 3px #f68fa1;
  }
  100% {
        color: #f1536e;

    box-shadow: 0px 0px 0px 0px #f68fa1;
  }
}
.badge-outline-danger-new {
  animation: 1s ease 0s pulseInUse infinite;
}

tr.row-updated {
  animation: rowHighlightFade 2s ease-out;
  /*background-color: #d0f5d0 !important;*/
  box-shadow: 0 0 10px #2652e4;
}

@keyframes rowHighlightFade {
  0%   { box-shadow: 0 0 10px #2652e4; scale:1.01;}
  30% { box-shadow: none; background-color: #fff; scale:1;}
  50%   { box-shadow: 0 0 10px #2652e4; scale:1.01;}
  70% { box-shadow: none; background-color: #fff; ;}
  100% { box-shadow: none; background-color: transparent; scale:1}
}


li.row-updated {
  animation: liHighlightFade 2s ease-out;

  box-shadow: 0 0 8px #81c784;
  transition: background-color 0.3s ease;
}

/* Klíčové snímky */
@keyframes liHighlightFade {
  0%   { box-shadow: 0 0 10px #2652e4; scale:1.01;}
  30% { box-shadow: none; background-color: #fff; scale:1;}
  50%   { box-shadow: 0 0 10px #2652e4; scale:1.01;}
  70% { box-shadow: none; background-color: #fff; ;}
  100% { box-shadow: none; background-color: transparent; scale:1}
}

/* ----- Header ----- */
.header-desktop {
    background: #f5f5f5;
    -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    right: 0;
    left: 300px;
    height: 75px;
    z-index: 3;
}

.header-desktop .section__content {
    overflow: visible;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media (max-width: 991px) {
    .header-desktop {
        position: relative;
        top: 0;
        left: 0;
        height: 170px;
    }
}

.header-desktop .mess-dropdown {
    top: 51px;
}

.header-desktop .email-dropdown {
    top: 51px;
}

.header-desktop .notifi-dropdown {
    top: 51px;
}

@media (max-width: 991px) {
    .logo {
        text-align: center;
    }
}

.header-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .header-wrap .account-item > .content {
        display: none;
    }
}

@media (max-width: 991px) {
    .header-wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .header-wrap .mess-dropdown {
        left: 0;
    }

    .header-wrap .mess-dropdown::before {
        left: 0;
    }

    .header-wrap .notifi-dropdown {
        left: -83px;
    }

    .header-wrap .notifi-dropdown::before {
        left: 79px;
    }
}

.header-button {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 991px) {
    .header-button {
        margin-top: 30px;
        width: 100%;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -moz-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

.noti-wrap {
    height: 45px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.noti-wrap .noti__item:last-child {
    margin-right: 50px;
}

@media (max-width: 1200px) {
    .noti-wrap .noti__item:last-child {
        margin-right: 30px;
    }
}

@media (max-width: 991px) {
    .noti-wrap .noti__item:last-child {
        margin-right: 0;
    }
}

.noti__item {
    position: relative;
    margin-right: 35px;
    display: inline-block;
    cursor: pointer;
}

@media (max-width: 1200px) {
    .noti__item {
        margin-right: 25px;
    }
}

@media (max-width: 767px) {
    .noti__item {
        margin-right: 20px;
    }
}

.noti__item:hover i {
    color: #999;
}

.noti__item i {
    font-size: 30px;
    color: #a9b3c9;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
    vertical-align: middle;
}

@media (max-width: 767px) {
    .noti__item i {
        font-size: 24px;
    }
}

.noti__item .quantity {
    position: absolute;
    display: inline-block;
    top: -4px;
    right: -7px;
    height: 15px;
    width: 15px;
    line-height: 15px;
    text-align: center;
    background: #ff4b5a;
    color: #fff;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    font-size: 12px;
}

.account-wrap {
    position: relative;
}

.account-item {
    cursor: pointer;
}

.account-item .image {
    width: 45px;
    height: 45px;
    float: left;
    overflow: hidden;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

.account-item .image > img {
    width: 100%;
}

.account-item > .content {
    margin-left: 45px;
    padding: 9px 0;
    padding-left: 12px;
}

.account-item > .content > a {
    color: #333;
    text-transform: capitalize;
    font-weight: 500;
}

.account-item > .content > a:after {
    font-family: "Material-Design-Iconic-Font";
    font-weight: 500;
    content: '\f2f9';
    display: inline-block;
    font-size: 16px;
    margin-left: 5px;
}

.account-item > .content > a:hover {
    color: #666;
}

.account-dropdown {
    min-width: 305px;
    position: absolute;
    top: 58px;
    right: 0;
    background: #fff;
    -webkit-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    -webkit-transform-origin: right top;
    -moz-transform-origin: right top;
    -ms-transform-origin: right top;
    -o-transform-origin: right top;
    transform-origin: right top;
    z-index: 3;
}

.account-dropdown .info {
    padding: 25px;
    border-top: 1px solid #f5f5f5;
    border-bottom: 1px solid #f2f2f2;
}

.account-dropdown .info .image {
    float: left;
    height: 65px;
    width: 65px;
    overflow: hidden;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

.account-dropdown .info .content {
    margin-left: 65px;
    padding: 11px 0;
    padding-left: 12px;
}

.account-dropdown .info .content .name {
    line-height: -webkit-calc(20/16);
    line-height: -moz-calc(20/16);
    line-height: calc(20/16);
}

.account-dropdown .info .content .name a {
    color: #333;
    font-weight: 500;
    text-transform: capitalize;
}

.account-dropdown .info .content .name a:hover {
    color: #666;
}

.account-dropdown .info .content .email {
    font-size: 13px;
    color: #999;
    line-height: -webkit-calc(20/13);
    line-height: -moz-calc(20/13);
    line-height: calc(20/13);
}

.account-dropdown:after {
    content: '';
    display: block;
    width: 19px;
    height: 19px;
    border-bottom: 9px solid #fff;
    border-top: 9px solid transparent;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    position: absolute;
    top: -18px;
    right: 33px;
}

.account-dropdown__item a {
    display: block;
    color: #333;
    padding: 15px 25px;
    font-size: 14px;
}

.account-dropdown__item a:hover {
    background: #4272d7;
    color: #fff;
}

.account-dropdown__item a i {
    line-height: 1;
    margin-right: 20px;
    font-size: 18px;
    vertical-align: middle;
}

.account-dropdown__body {
    padding: 12px 0;
}

.account-dropdown__footer {
    border-top: 1px solid #f2f2f2;
}

.account-dropdown__footer a {
    display: block;
    color: #333;
    padding: 15px 25px;
    font-size: 14px;
}

.account-dropdown__footer a:hover {
    background: #4272d7;
    color: #fff;
}

.account-dropdown__footer a i {
    line-height: 1;
    margin-right: 20px;
    font-size: 18px;
    vertical-align: middle;
}

.menu-sidebar {
    width: 300px;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    background: #fff;
    overflow-y: auto;
}

.menu-sidebar .logo {
    background: #f5f5f5;
    height: 75px;
    padding: 0 35px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
    border-right: 1px solid #e5e5e5;
    position: relative;
    z-index: 3;
}

.menu-sidebar .navbar__list .navbar__sub-list {
    display: none;
    padding-left: 34px;
}

.menu-sidebar .navbar__list .navbar__sub-list li a {
    padding: 11.5px 0;
}

.menu-sidebar__content {
    position: relative;
    height: -webkit-calc(100vh - 75px);
    height: -moz-calc(100vh - 75px);
    height: calc(100vh - 75px);
}

.navbar-sidebar {
    padding: 35px;
    padding-bottom: 0;
}

.navbar-sidebar .navbar__list li a {
    display: block;
    color: #555;
    font-size: 16px;
    padding: 15px 0;
}

.navbar-sidebar .navbar__list li a i {
    margin-right: 19px;
}

.navbar-sidebar .navbar__list li a:hover {
    color: #4272d7;
}

.navbar-sidebar .navbar__list li.active > a {
    color: #4272d7;
}

.has-sub {
    position: relative;
}

.header-mobile {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.header-mobile .header-mobile__bar {
    padding: 15px 0;
}

.header-mobile .header-mobile-inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.header-mobile .hamburger {
    width: 36px;
    height: 36px;
    padding: 0;
    line-height: 1;
    vertical-align: top;
    background: #fff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header-mobile .hamburger .hamburger-box {
    width: 20px;
    height: 15px;
}

.header-mobile .hamburger .hamburger-box .hamburger-inner {
    width: 20px;
    height: 2px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.header-mobile .hamburger .hamburger-box .hamburger-inner:before {
    width: 20px;
    height: 2px;
    top: 6px;
}

.header-mobile .hamburger .hamburger-box .hamburger-inner:after {
    top: 12px;
    width: 20px;
    height: 2px;
}

.header-mobile .navbar-mobile {
    display: none;
    position: absolute;
    width: 100%;
    top: 88px;
    z-index: 20;
}

.header-mobile .navbar-mobile .navbar-mobile__list {
    background: #f8f8f8;
}

.header-mobile .navbar-mobile .navbar-mobile__list > li > a {
    padding-left: 15px !important;
}

.header-mobile .navbar-mobile .navbar-mobile__list li a {
    color: #555;
    display: block;
    padding: 10px 15px;
    padding-right: 25px;
    padding-left: 0;
    border-bottom: 1px solid #e6e6e6;
    text-transform: capitalize;
    line-height: inherit;
}

.header-mobile .navbar-mobile .navbar-mobile__list li a:hover {
    color: #4272d7;
}

.header-mobile .navbar-mobile .navbar-mobile__list li a > i {
    margin-right: 19px;
}

.header-mobile .navbar-mobile .navbar-mobile__list li.has-dropdown > a:after {
    content: '\f105';
    font-family: FontAwesome, cursive;
    float: right;
    font-size: 16px;
    line-height: 22px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.header-mobile .navbar-mobile .navbar-mobile__list li.has-dropdown > a.active::after {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}

.header-mobile .navbar-mobile .navbar-mobile__dropdown {
    padding-left: 35px;
    display: none;
}

.navbar-mobile-sub__list {
    display: none;
    padding-left: 30px;
    background: #fff;
}

.header-mobile .navbar-mobile .navbar-mobile-sub__list li a {
    padding-left: 15px;
}

.header-mobile-2 {
    background: #393939;
    position: static;
}

.header-mobile-2.header-mobile .navbar-mobile {
    top: 82px;
}

.header-mobile-2.header-mobile .hamburger {
    background: transparent;
}

.header-mobile-2.header-mobile .hamburger .hamburger-box .hamburger-inner {
    background: #fff;
}

.header-mobile-2.header-mobile .hamburger .hamburger-box .hamburger-inner::before {
    background: #fff;
}

.header-mobile-2.header-mobile .hamburger .hamburger-box .hamburger-inner::after {
    background: #fff;
}

.sub-header-mobile-2 {
    background: #fff;
    padding: 15px;
}

.sub-header-mobile-2 .header__tool {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.sub-header-mobile-2 .header__tool .header-button-item {
    color: #a9b3c9;
}

.sub-header-mobile-2 .header__tool .account-wrap .account-item--style2 .content a {
    color: #333;
}

.sub-header-mobile-2 .header__tool .notifi-dropdown {
    top: 49px;
}

.sub-header-mobile-2 .header__tool .setting-dropdown {
    top: 49px;
}

.hamburger.is-active .hamburger-box .hamburger-inner:after {
    -webkit-transform: translate3d(0, -12px, 0) rotate(-90deg);
    -moz-transform: translate3d(0, -12px, 0) rotate(-90deg);
    transform: translate3d(0, -12px, 0) rotate(-90deg);
}

.mess-dropdown, .email-dropdown, .notifi-dropdown, .setting-dropdown {
    position: absolute;
    z-index: 9999;
    min-width: 340px;
    background: #fff;
    -webkit-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e5e5;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    -webkit-transform-origin: left top;
    -moz-transform-origin: left top;
    -ms-transform-origin: left top;
    -o-transform-origin: left top;
    transform-origin: left top;
    top: 100%;
    left: 0;
}

.mess-dropdown:before, .email-dropdown:before, .notifi-dropdown:before, .setting-dropdown:before {
    content: '';
    display: block;
    width: 19px;
    height: 19px;
    border-bottom: 9px solid #fff;
    border-top: 9px solid transparent;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    position: absolute;
    top: -17px;
    left: 55px;
    z-index: 3;
}

.mess__title, .email__title, .notifi__title {
    padding: 22px;
    border-bottom: 1px solid #f2f2f2;
    cursor: default;
}

.mess__title p, .email__title p, .notifi__title p {
    line-height: -webkit-calc(29/14);
    line-height: -moz-calc(29/14);
    line-height: calc(29/14);
    font-size: 14px;
    color: #808080;
}

.mess__footer a, .email__footer a, .notifi__footer a {
    display: block;
    text-transform: capitalize;
    text-align: center;
    font-size: 14px;
    color: #4272d7;
    padding: 24px 0;
}

.mess__footer a:hover, .email__footer a:hover, .notifi__footer a:hover {
    color: #3868cd;
}

.mess-dropdown {
    top: 49px;
    left: -55px;
}

.mess__item {
    padding: 19px 22px;
    padding-bottom: 14px;
    border-bottom: 1px solid #f2f2f2;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.mess__item:hover {
    background: #f7f7f7;
}

.mess__item .image {
    margin-right: 15px;
}

.mess__item .content {
    width: -webkit-calc(100% - 55px);
    width: -moz-calc(100% - 55px);
    width: calc(100% - 55px);
    text-align: left;
}

.mess__item .content h6 {
    font-size: 14px;
    font-weight: 600;
    padding-top: 4px;
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 40px; /* místo pro šipku */
}
.form-group:has(select) {
  position: relative;
}

.form-group:has(select)::after {
  content: "expand_more";
  font-family: 'Material Icons';
  font-size: 20px;
  position: absolute;
  right: 14px;
  top: 60%;
  transform: translateY(-50%);
  pointer-events: none;
}
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}

.alert h4 {
    margin-top: 0;
    color: inherit;
}

.alert .alert-link {
    font-weight: bold;
}

.alert>p,.alert>ul {
    margin-bottom: 0;
}

.alert>p+p {
    margin-top: 5px;
}

.alert-dismissable {
    padding-right: 35px;
}

.alert-dismissable .close {
    position: relative;
    top: -2px;
    right: -21px;
    color: inherit;
}

.alert-success {
    background-color: #dff0d8;
    border-color: #d6e9c6;
    color: #3c763d;
}

.alert-success hr {
    border-top-color: #c9e2b3;
}

.alert-success .alert-link {
    color: #2b542c;
}

.alert-info {
    background-color: #d9edf7;
    border-color: #bce8f1;
    color: #31708f;
}

.alert-info hr {
    border-top-color: #a6e1ec;
}

.alert-info .alert-link {
    color: #245269;
}

.alert-warning {
    background-color: #fcf8e3;
    border-color: #faebcc;
    color: #8a6d3b;
}

.alert-warning hr {
    border-top-color: #f7e1b5;
}

.alert-warning .alert-link {
    color: #66512c;
}

.alert-danger {
    background-color: #f2dede;
    border-color: #ebccd1;
    color: #a94442;
}

.alert-danger hr {
    border-top-color: #e4b9c0;
}

.alert-danger .alert-link {
    color: #843534;
}

.alert {
    border-radius: 0;
    -webkit-border-radius: 0;
    box-shadow: 0 1px 2px rgba(0,0,0,0.11);
}

.alert .sign {
    font-size: 20px;
    vertical-align: middle;
    margin-right: 5px;
    text-align: center;
    width: 25px;
    display: inline-block;
}

.alert-success {
    background-color: #dbf6d3;
    border-color: #aed4a5;
    color: #569745;
}

.alert-info {
    background-color: #d9edf7;
    border-color: #98cce6;
    color: #3a87ad;
}

.alert-warning {
    background-color: #fcf8e3;
    border-color: #f1daab;
    color: #c09853;
}

.alert-danger {
    background-color: #f2dede;
    border-color: #e0b1b8;
    color: #b94a48;
}

.alert-white {
    background-image: linear-gradient(to bottom,#FFFFFF,#F9F9F9);
    border-top-color: #d8d8d8;
    border-bottom-color: #bdbdbd;
    border-left-color: #cacaca;
    border-right-color: #cacaca;
    color: #404040;
    padding-left: 61px;
    position: relative;
}

.alert-white .icon {
    text-align: center;
    width: 45px;
    height: 100%;
    position: absolute;
    top: -1px;
    left: -1px;
    border: 1px solid #bdbdbd;
}

.alert-white .icon:after {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    display: block;
    content: '';
    width: 10px;
    height: 10px;
    border: 1px solid #bdbdbd;
    position: absolute;
    border-left: 0;
    border-bottom: 0;
    top: 50%;
    right: -6px;
    margin-top: -5px;
    background: #fff;
}

.alert-white.rounded {
    border-radius: 3px;
    -webkit-border-radius: 3px;
}

.alert-white.rounded .icon {
    border-radius: 3px 0 0 3px;
    -webkit-border-radius: 3px 0 0 3px;
}

.alert-white .icon i {
    font-size: 20px;
    color: #FFF;
    left: 12px;
    margin-top: -10px;
    position: absolute;
    top: 50%;
}

.alert-white.alert-danger .icon,.alert-white.alert-danger .icon:after {
    border-color: #ca452e;
    background: #da4932;
}

.alert-white.alert-info .icon,.alert-white.alert-info .icon:after {
    border-color: #3a8ace;
    background: #4d90fd;
}

.alert-white.alert-warning .icon,.alert-white.alert-warning .icon:after {
    border-color: #d68000;
    background: #fc9700;
}

.alert-white.alert-success .icon,.alert-white.alert-success .icon:after {
    border-color: #54a754;
    background: #60c060;
}


 .btn-xs {
  padding: .25rem .4rem;
  font-size: .875rem;
  line-height: .5;
  border-radius: .2rem;
}


li.recent {
  position: relative;         /* ✅ nutné pro správné zarovnání bodu */
  padding-left: 24px;         /* prostor pro bod vlevo */
}

/* zelený blikající bod */
li.recent::before {
  content: '';
  position: absolute;
  left: 8px;
top: 1.2em;
transform: none;
  width: 8px;
  height: 8px;
  background-color: #E91E63;
  border-radius: 50%;
  animation: blinkDot 1.2s infinite;
  box-shadow: 0 0 2px #E91E63;
}

/* animace blikání */
@keyframes blinkDot {
  0%, 100% { opacity: 1; transform: scale(1) translateY(-10%); }
  50%      { opacity: 0.3; transform: scale(1.05) translateY(-10%); }
}
tr.recent {
  position: relative;
}

tr.recent::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: #4caf50;
  border-radius: 50%;
  animation: blinkDot 1.2s infinite;
  box-shadow: 0 0 4px #4caf50;
}


table.dataTable tbody th, table.dataTable tbody td {
    padding: 3px 10px!important;
}

.dot-wrapper {
  position: relative;
  display: inline-block;
}

.dot {
  width: 8px;
  height: 8px;
  background-color: #E91E63;
  border-radius: 50%;
  margin-right: 6px;
  animation: blinkDot 1.2s infinite;
  box-shadow: 0 0 4px #E91E63;
  display: inline-block;
  vertical-align: middle;
}
@keyframes blinkDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.3; transform: scale(1.4); }
}
/* Tooltip mimo animovaný prvek */
.tooltip-text {
  visibility: hidden;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 4px;
  padding: 8px 8px;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 12px;
  opacity: 0;
  transition: opacity 0.2s;
}

/* Zobrazit při hoveru nad celým wrapperem */
.dot-wrapper:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}


.progress {
height: 16px;
    position: relative;
    background: #d9d9d9;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
.progress_title{font-size: 14px;
    color: #595959;
    display: inline-block;
    margin-bottom: 5px;
}
.progress-bar {
    position: absolute;
    width: 0;
    top: 0;
    left: 0;
    bottom: 0;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-transition: width 1s ease-in-out;
    -o-transition: width 1s ease-in-out;
    -moz-transition: width 1s ease-in-out;
    transition: width 1s ease-in-out;
    background-color: #4272d7;
    overflow: visible;
}




.projects-table tbody tr:hover td {
  border-top: 1px solid #2652e4; /* modrá při hoveru */
  border-bottom: 1px solid #2652e4; /* modrá při hoveru */
  background-color: #f9f9f9;        /* světle šedé pozadí */
  cursor: pointer; color: #2652e4;;
}