.skeleton {
  background-color: #e0e0e0;
  border-radius: 4px;
  margin: 10px 0;
  animation: pulse 1.5s infinite;
}

.skeleton.text {
  height: 20px;
  width: 100px;
  margin-bottom: 10px;
}

.skeleton.header {
  height: 30px;
  width: 200px;
  margin-bottom: 20px;
}

.skeleton.button {
  height: 20px;
  width: 100px;
  display: inline-block;
}

.skeleton.icon {
  height: 20px;
  width: 20px;
  display: inline-block;
  margin-right: 10px;
}

.skeleton-container {
  display: flex;
  justify-content: space-between;
}

@keyframes pulse {
  0% {
    background-color: #e0e0e0;
  }

  50% {
    background-color: #f0f0f0;
  }

  100% {
    background-color: #e0e0e0;
  }
}
