.loading-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 200px;
}

.loading-text {
  margin-top: 1rem;
  color: var(--accent);
  font-weight: bold;
}

.loading-glass {
  width: 80px;
  height: 100px;
  border: 4px solid var(--accent);
  border-top: none;
  border-radius: 0 0 20px 20px;
  position: relative;
  overflow: hidden;
}

.loading-liquid {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--primary);
  animation: fillGlass 1.5s ease-in-out infinite;
}

@keyframes fillGlass {
  0% {
    height: 0;
  }
  
  50% {
    height: 100%;
  }
  
  100% {
    height: 0;
  }
}