body {
    display: flex;
    flex-direction: column;
    background-color: var(--light-neutral);
    overflow-y: scroll;
}

.full-page {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-width: 1000px;
}

.content {
    flex-grow: 1;
    min-width: 900px;
    transform: translateY(-18px);
    margin-left: 54px;
    margin-right: 90px;
    background-color: var(--white);
    border-radius: 16px;
    box-shadow: 0 5px 50px #e5e0dd;
    padding: 50px;
}

.pagination {
    display: flex;
    height: 75px;
    padding: 25px;
}

.pagination > * {
  background-color: var(--light-neutral);
  min-width: 100px;
  height: 45px;
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-right-style: solid;
  border-width: 1px;
  border-right-color: var(--neutralsneutral);
}
.pagination > *:first-child {
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}
.pagination > *:last-child {
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  border-right-style: none;
}
.pagination > a:hover {
  background-color: var(--white);
}

.footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 8px 96px 24px 108px;
}

.vibe-container {
    height: 120px;
    display: flex;
    gap: 13px;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    box-shadow: var(--shadow);
}
.vibe-summary {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.vibe-image-and-label {
    display: flex;
    gap: 10px;
    justify-content: start;
    align-items: center;
}

input[type="range"].prompts-vibe {
    flex-grow: 1;
    -webkit-appearance: none;
    height: 20px;
    border-radius: 100px;
    background-image: -webkit-linear-gradient(0deg, #E2415E, #FCB10F, #CFEB62, #27B978);
    cursor: pointer;
}
input[type="range"].prompts-vibe::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 30px;
    border-radius: 6px;
    border-width: 1px;
    border-style: solid;
    border-color: var(--dark-cyan);
    background-color: var(--neutralswhite);
    cursor: pointer;
}

.questions-vibe-slider {
    display: flex;
    min-width: 350px;
    width: 450px;
    max-width: 550px;
    padding: 10px;
    margin-bottom: 16px;
}
