
:root {
  --main-bg-color: #f8f8f8;
  --titles-color: #808080;
  --titles-color-selected: black;
}


body {
  background-color: var(--main-bg-color);
}

/* Shake wave animation */

.animate-wave {
    animation-name: wave;
    animation-duration: 2.5s;
    animation-iteration-count: infinite;
    transform-origin: 70% 70%;
    display: inline-block;
}

@keyframes wave {
  0% {
    transform: rotate( 0.0deg)
  }

  10% {
    transform: rotate(14.0deg)
  }

  20% {
    transform: rotate(-8.0deg)
  }

  30% {
    transform: rotate(14.0deg)
  }

  40% {
    transform: rotate(-4.0deg)
  }

  50% {
    transform: rotate(10.0deg)
  }

  60% {
    transform: rotate( 0.0deg)
  }

  100% {
    transform: rotate( 0.0deg)
  }
}

/* Info bottom message */
.info-message {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 700px;
  width: calc(100% - 40px);
  background: #fff;
  color: #333;
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.40);
  border-radius: 12px;
  padding: 16px 20px;
  z-index: 9999;
  font-family: "Roboto", sans-serif;
  display: none;
}

.info-message-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.info-message-text {
  font-size: 14px;
  flex-grow: 1;
  flex-shrink: 1;
  line-height: 1.4;
}

.info-message-button {
  background-color: #4caf50;
  color: #fff;
  border: none;
  padding: 8px 16px;
  font-size: 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.info-message-button:hover {
  background-color: #45a047;
}

