:root {
  --primary-color: #332d42 ;
  --secondary-color:	#474554 ;
  --terziary-color: #373148;
  --primary-title-color: whitesmoke;
  --secondary-title-color: #007caa;
  --terziary-title-color: #C19A6B;
  --primary-text-color: #D0D3D8;
  --secondary-text-color: #A1A7B1;
  --input-color: #403c4b;
  --input-text-color: white;
  --input-border-color: #007caa;
  /* --input-hover-color: #007caa; */
  --base-color: whitesmoke;
  --btn-color: #007caa;
  --btn-hover-color: #094d85;
  --underline: #808080;
  --clicked-color: #13a2d6;
  --icon-color:#007caa;
  --secondary-icon-color:#d19f63;
  --alert-color: #d05807;
  --error-color: rgb(255, 68, 0);
  --highlight-color: #393053;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--primary-color);
}

.overlay {
  position: relative;
  height: 100vh;
  width: 100vw;
  opacity: 0.3;
  pointer-events: none;
}

.container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--secondary-color);
  padding: 20px;
  border-radius: 6px;
}

.placeholder {
  font-size: 12px;
  color: var(--secondary-text-color);
  text-align: center;
}

.data > p {
  margin: 5px 0;
}

.title > h1 {
  color: var(--secondary-title-color);
  margin-bottom: 0px;
}

h1 > span {
  color: var(--primary-title-color);
}

.buttons {
  margin-top: 40px;
}

#login {
  width: 250px;
  padding: 5px;
}

.logout-btn-box {
  margin-top: 20px;
}

#logout {
  width: 250px;
  padding: 5px;
}

button {
  outline: none;
  padding: 13px;
  border-radius: 2px;
  outline: none;
  color: whitesmoke;
  background-color: var(--btn-color);
  border: none;
  transition: all 0.3s ease;
}

button:hover {
  background-color: var(--btn-hover-color);
  cursor: pointer;
}

#entry {
  color: var(--terziary-title-color);
}

.hidden {
  display: none !important;
}

.title-sonda {
  color: var(--secondary-title-color);
}

.no-error {
  color: var(--clicked-color);
  font-size: 15px;
}

.error {
  color: var(--error-color);
  font-size: 15px;
}

.fields {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  padding: 3px;
  gap: 10px;
}

.fields > input {
  padding: 10px;
  outline: none;
  border: none;
  border-bottom: solid 5px var(--icon-color);
  width: 250px;
}

.project-div {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.project-div > label {
  color: var(--secondary-icon-color);
}

.project-div > select {
  outline: none;
  border: none;
  background-color: var(--btn-color);
  color: var(--primary-text-color);
  width: 120px;
  height: 30px;
  text-align: center;
  cursor: pointer;
}

.logs p.show {
  opacity: 1;
  animation: hideMessage 4s ease-in-out;
}

@keyframes hideMessage {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 0.2;
  }
}
.popup-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  background-color: var(--secondary-color);
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 700px;
  height: 500px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: row;
  align-items: center;
}

.left-dashboard {
  display: flex;
  flex-direction: column;
  width: 225px;
  height: inherit;
  background-color: var(--terziary-color);
}

.left-dashboard > h2 {
  text-align: center;
  margin-bottom: 50px;
}

.left-dashboard img {
  width: 60px;
  padding: 10px;
  align-self: center;
  margin-top: auto;
}

.entries {
  display: flex;
  flex-direction: column;
  text-align: left;
  width: inherit;
  overflow-y: auto;
  -ms-overflow-style: none; /* Hide scrollbar in IE and Edge */
  scrollbar-width: none;
}

.entries::-webkit-scrollbar {
  display: none; /* Hide scrollbar in Chrome, Safari, Opera */
}

.entries .text-button {
  padding: 10px;
  font-size: 12px;
  border: none;
  outline: none;
  background-color: var(--secondary-icon-color);
  color: var(--input-color);
  border-bottom: solid 1.5px var(--input-color);
  cursor: pointer;
  margin: 0;
}

.entries .text-button:hover {
  opacity: 0.8;
}

.right-dashboard {
  display: flex;
  flex-direction: column;
  height: inherit;
  width: inherit;
  background-color: var(--terziary-color);
}

.right-dashboard > h2 {
  color: var(--primary-text-color);
  text-align: center;
}

.data-container {
  display: flex;
  flex-direction: column;
  color: var(--primary-text-color);
  padding-left: 15px;
  padding-right: 15px;
  height: inherit;
  overflow: hidden;
  background-color: var(--primary-color);
}

.row {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  border-bottom: solid 1px var(--underline);
  height: 36px;
}

.close-btn {
  position: absolute;
  right: 0;
  top: 0;
  text-align: center;
  padding: 6px;
}

.copyright {
  font-size: 11px;
  color: var(--primary-text-color);
}

.loader {
  position: absolute;
  top: 50%;
  left: 65%;
  transform: translate(-50%, -50%);
}

.loader img {
  width: 50px;
}

.search-bar {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 15px;
  justify-content: center;
}

.search-bar > * {
  flex: 1;
}

.search-bar input {
  padding: 5px;
  outline: none;
  background-color: var(--secondary-color);
  border: none;
  border-bottom: solid 2px var(--btn-color);
  align-items: center;
  color: var(--primary-text-color);
}

.search-bar button {
  margin: 0;
  width: inherit;
  height: inherit;
  align-self: center;
  padding: 6px;
  border-radius: 0;
  background-color: var(--btn-color);
}

.search-bar button:hover {
  opacity: 0.8;
}

.no-data-yet {
  font-size: 60px;
  color: var(--secondary-icon-color);
}

.not-found {
  position: fixed;
  left: 65%;
  transform: translateX(-65%);
}

.icon {
  pointer-events: none;
  color: var(--icon-color);
  font-size: 18px;
}

.connect-dot {
  display: flex;
  flex: row;
  align-items: center;
  justify-content: space-evenly;
}

.connect-dot p {
  padding: 0;
  margin-right: -5px;
  margin-top: -40px;
}

.connect {
  color: green;
}

.disconnect {
  color: red;
}

.color-units {
  color: var(--secondary-icon-color);
  margin-right: 5px;
}


.unit-line {
  display: flex;
  align-items: center;
  width: 140px;
  flex-direction: row;
  justify-content: space-between;
}

.opacity {
    opacity: .7;
}

.info {
  color: var(--terziary-title-color);
  margin-top: -18px;
  font-size: 10px;
}
/*# sourceMappingURL=global.css.map */
