@import url(https://fonts.cdnfonts.com/css/mulish);
.App {
  text-align: center;
}

.App-logo {
  height: 40vmin;
  pointer-events: none;
}
.MuiDataGrid-columnHeaders {
  background-color: #f5f5f5 !important;
  border-bottom: 1px solid #e0e0e0 !important;
}

.MuiDataGrid-columnHeader {
  background-color: #f5f5f5 !important;
}

@media (prefers-reduced-motion: no-preference) {
  .App-logo {
    animation: App-logo-spin infinite 20s linear;
  }
}

.measurementLabel {
  background: black;
  padding: 4px 10px;
  border-radius: 20px;
  color: white
}

.positionLabel {
  background: black;
  padding: 4px 10px;
  border-radius: 20px;
  color: white
}

.App-header {
  background-color: #282c34;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: calc(10px + 2vmin);
  color: white;
}

.App-link {
  color: #61dafb;
}

.text-field {
  width: 100%;
  height: 64px;
}

.Auth-form-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
}

.Auth-form-popup {
  width: 100vw;
  height: 100vh;
}

.e-toast-container .e-toast {
  background-color: navy;
}

.Auth-form {
  width: 420px;
  box-shadow: rgb(0 0 0 / 16%) 1px 1px 10px;
  padding-top: 30px;
  padding-bottom: 20px;
  border-radius: 8px;
  background-color: white;
}

.logo-up {
  text-align: center;
  margin-bottom: 32px;
}

.Auth-form-content {
  padding-left: 12%;
  padding-right: 12%;
  overflow-x: auto;
}

.Auth-form-title {
  text-align: center;
  margin-bottom: 1em;
  font-size: 24px;
  color: rgb(34, 34, 34);
  font-weight: 660;
}

label {
  font-size: 14px;
  font-weight: 600;
  color: rgb(34, 34, 34);
}

.App-logo {
  height: 40vmin;
  pointer-events: none;
}

.react-draggable {
  min-height: 180px;
  min-width: 200px;
}

.react-draggable.react-draggable-dragged {
  min-height: 180px;
  min-width: 200px;
}

.cube-scene {
  position: absolute;
  top: 60px;
  right: 0px;
  width: 180px;
  height: 240px;
  /* background-color: #FFF; */
}

.MuiDataGrid-columnHeaderTitle {
  font-weight: bold !important;
  overflow: visible !important;
}

.datagrid-row {
  border-bottom: 1px solid #D2D2D2;
}

.datagrid-row-italic {
  border-bottom: 1px solid #D2D2D2;
  font-style: italic;
}

.datagrid-row-shadow {
  box-shadow: 0px 1px 0px 0px #D2D2D2;
}

.datagrid-row-error {
  box-shadow: 0px 1px 0px 0px #D2D2D2;
  background-color: #FDE2E2 !important;
}

.MuiDataGrid-columnHeaderCheckbox {
  background-color: #D2D2D2;
}

.MuiDataGrid-columnHeader {
  background-color: #D2D2D2;
}

g:focus,
path:focus {
  outline: none !important;
}

@keyframes App-logo-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}
.container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.centered-div {
    width: 25%;
    padding: 30px;
    min-width: 300px;
    background: white;
    color: #404040;
    position: absolute;
    min-height: 400px;
    box-shadow: 0px 4px 16px rgba(255, 255, 255, 0.86);
    border-radius: 4px;
    font-family: 'Mulish';
}
.splitter-container {
    display: flex;
    width: 100%;
    height: 100%;
}
  
.splitter-pane {
    overflow: auto;
}
  
.splitter-divider {
    width: 5px;
    cursor: col-resize;
    background-color: #ffffff;
    z-index: 1;
}
.left-wrapper {
    text-align: start;
    padding: 10px;
}

.chart-wrapper {
    display: flex;
    margin-left: 4px;
    align-items: end;
}

.chart-bar {
    position: relative;
    margin: 10px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.chart-bar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.15));

    /* background-image: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent); */
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    pointer-events: none;
}

.chart-bar:hover::before {
    opacity: 1;
    animation: shine 1s infinite;

}
.no-condition-button {
    display: flex;
    border: 1px solid #888;
    color: #888;
    align-items: center;
    font-size: 0.8125rem;
    border-radius: 4px;
    width: 90px;
    height: 40px;
    line-height: 40px;
    margin: 6px;
    margin-top: 10px;
    justify-content: center;
}
/* 
.chart-bar-custom {
    position: relative;
    width: 44px;
    margin: 10px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    
  }
  
  .chart-bar-custom::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.15));
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    pointer-events: none;
  }
  
  .chart-bar-custom:hover::before {
    opacity: 1;
    animation: shine 1s infinite;
  }
   */



@keyframes shine {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}
.wrapper {
    border: 1px solid #C3C3C3;
    text-align: start;
    padding: 10px;
    margin: 10px;
}
.wrapper-last {
    width: 20%;
    border: 1px solid #C3C3C3;
    text-align: start;
    padding: 10px;
    margin: 10px;
    height: 300px;
}
.inner-wrapper{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    width: 100%;
    align-items: stretch;
}
.caption-wrapper {
    margin-left: 8px;
    align-self: start;
    font-weight: bold;
}

.chart-wrapper {
    display: flex;
    margin-left: 4px;
    align-items: end;
}
.chart-wrapper-mobile {
    display: flex;
    margin-left: 4px;
    align-items: start;
   
    flex-direction: column;
}
.title-wrapper {
    display: flex;
    margin-left: 4px;
    text-align: center;
    align-items: center;
}

.chart-bar-summary {
    position: relative;
    margin: 10px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.chart-bar-summary::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.15));

    /* background-image: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent); */
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    pointer-events: none;
}

.chart-bar-summary:hover::before {
    opacity: 1;
    animation: shine 1s infinite;

}



@keyframes shine {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}
.container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.centered-div {
    width: 25%;
    padding: 30px;
    background: white;
    color: #404040;
    position: absolute;
    min-height: 400px;
    box-shadow: 0px 4px 16px rgba(255, 255, 255, 0.86);
    border-radius: 4px;
    font-family: 'Mulish';
}
.flex-container {
    display: flex;
    background-color: white;
    flex-direction: row;
  }
  
  .flex-item {
    background-color: white;
    min-width: 250px;
    height: '100%';
    border-color: gray;
    border-style: groove;
    border-width: 0 0.5px 0px 0;
  }
  
  .flex-item-no-border {
    background-color: white;
    width: 350px;
    height: '100%';
    border: 0px;
  }
  .circle {
    display: inline-block;
      background-color: #0086CA;
      margin: 8px;
      border-radius: 50%;
  }
  
  .circle-inner {
    color: white;
    display: table-cell;
    vertical-align: middle; 
    text-align: center;
    text-decoration: none;
    height: 22px;
    width: 22px;  
    font-size: 9px;
    caret-color: transparent;
  }
  .circle-big {
    display: inline-block;
      background-color: #0086CA;
      margin: 20px 10px;
      border-radius: 50%;
  }
  
  .circle-big-inner {
    color: white;
    display: table-cell;
    vertical-align: middle; 
    text-align: center;
    text-decoration: none;
    height: 100px;
    width: 100px;  
    font-size: 40px;
    caret-color: transparent;
  }
.selectable {
    /* width: 200px; */
    height: 25px;
    padding: 4px;
    width: 100% - 60px;
    min-width: 350px;
    border: 1px solid #ddd;
    cursor: pointer;
  }
.hero-img {
    background:url('http://localhost:8080/images/footer_sudop.png');
    background-size:cover;
    width: 120px;
    height: 160px;
  }
.header { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    background-color: #FFF; /* Toto nastavte dle vašeho designu */ 
    z-index: 999;
 } 
    
.header-logo { 
    /* Tady přidejte styly pro logo, například šířku, výšku, obrázky atd. */ 
    width: '100%'
} 

.header-nav .nav-button { 
    margin-left: 10px; 
    padding: 10px 20px; 
    border: none; 
    background-color: blue; /* Vyberte barvu dle designu */ 
    color: white; cursor: pointer; 
} 
/* Další styly pro písmo, mezery, hover efekty atd. */

.list-style-none {
    list-style: none;
  }
  
  .list-check:before {
    list-style: none;
    content: '✓  ';
  }
  
  .list-nocheck:before {
    list-style: none;
    content: '✖  ';
    color: lightgray
  }
.user-button {
    width: 38px;
    height: 38px;
    background: #0086CA;
    cursor: pointer;
    border: 4px solid #C3C3C3;
    color: white;
    border-radius: 40px;
    line-height: 32px;
    margin-left: 16px;
    margin-top: 4px;
    font-size: 16px;
    transition: background-color 0.7s ease; 
}
.user-button:hover {
    background-color: #0072a3; /* Change the background color on hover */
    border: 4px solid #A2A2A2;
}

.user-button:active {
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.5); /* Add a box-shadow on click */
    background-color: #00a1f2; /* Change the background color on click */
}
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', monospace;
}

/* Global CSS */

.ifc-container {
  position: relative;
  width: 95vw;
 /*  height: calc(100vh - 4px); */
  overflow: hidden;
}

.ifc-container-full {
  position: relative;
  width: calc(100vw - 60px);
  /* height: calc(100vh - 4px); */
  overflow: hidden;
}
body > #root > div {
  height: 100vh;
}

::-webkit-scrollbar {
  width: 7px; /* set to a smaller value */
  height: 7px;
}

::-webkit-scrollbar-thumb {
  background-color: #0086CA;
  border-radius: 10px;
}


::-webkit-scrollbar-track {
  background-color: #B1E5FF;
  border-radius: 10px;
}

svg#hsbarRounded {
 
  border-radius: 5px;
}
