.skeleton-full-container {
  margin: 0;
  padding: 25px;
}

.main {
  margin: 0;
  padding: 25px;
  align-items: center;
  height: 100%;
  justify-content: center;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  font-size: var(--bs-root-font-size);
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

#skeleton_ui {
  p,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  span,
  a,
  li,
  label {
    filter: blur(5px);
  }
}

.skeleton-loader {
  background: linear-gradient(to right, #eeeeee 8%, #dddddd 18%, #eeeeee 33%);
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 15px;
}

.skeleton-loader::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(to right, transparent 0%, #fff 50%, transparent 100%);
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

.skeleton-container {
  width: auto;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  background-color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  margin-bottom: 20px;
}

.skeleton-form-section {
  width: 65%;
  padding-right: 20px;
}

.skeleton-summary-section {
  width: 30%;
}

.skeleton-header {
  width: 180px;
  height: 25px;
  margin-bottom: 20px;
}

.skeleton-radio {
  width: 22%;
  height: 40px;
  margin-right: 10px;
  border-radius: 8px;
}

.skeleton-input {
  width: 100%;
  height: 40px;
  margin-bottom: 20px;
}

.skeleton-half-input {
  width: 48%;
  height: 40px;
}

.skeleton-button {
  width: 100%;
  height: 45px;
  background-color: #ddd;
  margin-top: 20px;
}

.skeleton-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.skeleton-small-box {
  width: 45%;
  height: 40px;
}

.skeleton-xsmall-box {
  padding: 1px;
  margin-inline-start: 5px;
  width: 35%;
  height: 40px;
}

.skeleton-large-box {
  width: 100%;
  height: 40px;
}

.skeleton-amount {
  width: 60px;
  height: 30px;
}

.skeleton-text {
  width: 100px;
  height: 20px;
}

.skeleton-nav {
  background-color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 15px 30px;
  margin-bottom: 20px;
  margin-top: -18px;
  text-align: center;
}

.skeleton-logo {
  width: 120px;
  height: 40px;
  border-radius: 5px;
  background-color: #eeeeee;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .skeleton-container {
    flex-direction: column;
  }

  .skeleton-form-section,
  .skeleton-summary-section {
    width: 100%;
    padding-right: 0;
  }

  .skeleton-summary-section {
    margin-top: 20px;
  }
}
