:root {
    --border-radius: 1rem;

    --background-color: #fff7e4;

    --shadow-color: 43deg 32% 59%;
    --shadow-elevation-low: 0.6px 0.5px 1px hsl(var(--shadow-color) / 0.22),
        1.1px 0.9px 1.8px -0.8px hsl(var(--shadow-color) / 0.31),
        2.5px 2.1px 4.1px -1.5px hsl(var(--shadow-color) / 0.4);
    --shadow-elevation-medium: 0.6px 0.5px 1px hsl(var(--shadow-color) / 0.23),
        2.4px 2px 4px -0.5px hsl(var(--shadow-color) / 0.3),
        5.5px 4.6px 9.1px -1px hsl(var(--shadow-color) / 0.38),
        12.6px 10.4px 20.7px -1.5px hsl(var(--shadow-color) / 0.45);
    --shadow-elevation-high: 0.6px 0.5px 1px hsl(var(--shadow-color) / 0.25),
        5.5px 4.5px 9px -0.3px hsl(var(--shadow-color) / 0.29),
        10.3px 8.5px 16.9px -0.5px hsl(var(--shadow-color) / 0.33),
        16.8px 13.9px 27.6px -0.8px hsl(var(--shadow-color) / 0.38),
        26.7px 22.2px 44px -1px hsl(var(--shadow-color) / 0.42),
        41.9px 34.7px 69px -1.3px hsl(var(--shadow-color) / 0.46),
        64.1px 53.1px 105.5px -1.5px hsl(var(--shadow-color) / 0.51);

    --white-gradient: linear-gradient(145deg, #ffffff, #e6e6e6);

    --primary-color: #e5edff;
    --primary-text-color: #5386fd;
    --error-color: #ffe5e5;
    --error-text-color: #ff4e4e;
    --success-color: #ecffe5;
    --success-text-color: #65d63b;
}
.h-screen {
    min-height: 100vh;
}
.survey-background {
    background: var(--background-color);
    display: flex;
    flex-direction: column;
}

.menu {
    list-style: none;
    margin: 0;
    padding: 0.5rem;
    background: var(--white-gradient);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-elevation-low);
    transition: box-shadow 0.2s;
}
.menu:hover {
    box-shadow: var(--shadow-elevation-medium);
}

.menu-item {
    display: block;
    margin-bottom: 5px;
}

.menu-link {
    display: flex;
    padding: 10px 15px;
    color: black !important;
    border-radius: 10px;
    text-decoration: none !important;

    justify-content: space-between;
    align-items: center;
}

.menu-link--active {
    color: white !important;
    background: var(--primary-text-color);
}

.menu-link:hover {
    color: white !important;
    background-color: var(--primary-text-color);
}

.survey-card {
    border-radius: var(--border-radius);
    background: white;
    box-shadow: var(--shadow-elevation-low);

    margin-bottom: 1rem;

    transition: box-shadow 0.2s;
}

.survey-card:hover {
    box-shadow: var(--shadow-elevation-medium);
}

.survey-card-body {
    padding: 2rem;
}

.survey-card-message--info {
    background-color: var(--primary-color);
    width: 100%;
    min-height: 1rem;
    padding: 0.5rem 2rem;
    color: var(--primary-text-color);
    border-radius: 0 0 var(--border-radius) var(--border-radius);
}

.survey-card-message--error {
    background-color: var(--error-color);
    color: var(--error-text-color);
    padding: 0.5rem 2rem;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
}

.survey-card-message--success {
    background-color: var(--success-color);
    color: var(--success-text-color);
    padding: 0.5rem 2rem;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
}

.pill {
    padding: 2px 8px;
    border-radius: 1rem;
    font-weight: 700;
    color: white;
    font-size: x-small;
}

.pill--success {
    background-color: var(--success-text-color);
}

.pill--error {
    background-color: var(--error-text-color);
}

.button {
    border: none;
    color: white;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    box-shadow: var(--shadow-elevation-low);
    transition: box-shadow 0.2s;
    text-transform: uppercase;
}

.button--primary {
    background-color: var(--primary-text-color);
}

.button:hover {
    box-shadow: var(--shadow-elevation-medium);
}

.button:disabled {
    background-color: gray;
    box-shadow: none;
}

.card-square {
    background: var(--white-gradient);
    text-decoration: none;
    border-radius: 10px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    color: black;
    text-decoration: none !important;

    box-shadow: var(--shadow-elevation-medium);

    transition: box-shadow 0.5s;
}

.card-square:hover {
    color: black;
    box-shadow: var(--shadow-elevation-high);
}

.card-square-icon {
    padding: 2rem 4rem;
}

.card-square-title {
    width: 100%;
    text-align: center;
    font-weight: 600;

    text-transform: uppercase;
    padding: 1rem;
}
.card-square-icon > svg {
    height: 4rem;
    width: 4rem;
}
