body {
    background-color: #E7E9F8;
    color: #1A049E;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    padding-bottom: 100px;
}

.btn {
    border-radius: 50px;
    font-weight: 600;
}

.btn-primary,
.btn-danger,
.btn-success {
    background-color: #FFB8C6;
    border: 2px solid #1A049E;
    color: #1A049E;
}
.btn-primary:hover,
.btn-danger:hover,
.btn-success:hover {
    background-color: #1A049E;
    border: 2px solid #FFB8C6;
    color: #FFB8C6;
}



.btn-secondary {
    background-color: transparent;
    color: #1A049E;
    border: 2px solid #1A049E;
}

.form-control {
    border: 2px solid #1A049E;
    color: #1A049E;
}

.form-label {
    font-weight: bold;
    margin-bottom: 0rem;
}

.progress {
    background-color: #D4D9E8;
    border-radius: 20px;
    height: 20px;
    overflow: hidden;
}

.progress-bar {
    background-color: #1A049E;
    border-radius: 20px;
}

#intro-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    transform: translateY(0);
    transition: transform 0.5s ease-in-out;
    z-index: 1050;
    background-color: #1A049E;
    color: white;
    overflow-y: auto;
}

#intro-overlay .border-top {
    position: sticky;
    bottom: 0;
    background: inherit; /* To maintain background color */
}



#results-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    transform: translateY(0);
    transition: transform 0.5s ease-in-out;
    z-index: 1050;
    background-color: #E3E8F4;
    color: #1A049E;
}

#results-overlay.slide-out {
    transform: translateY(100%);
}

#intro-overlay.slide-out {
    transform: translateY(100%);
}

h1 {
    font-weight: 700;
}

.intro-logo {
    width: 160px;
}

#progress-slideover {
    position: fixed;
    left: 0;
    bottom: -100%;
    width: 100%;
    transition: bottom 0.5s ease-in-out;
    z-index: 1040;
    max-height: 80vh;
    overflow-y: auto;
    background-color: #E7E9F8;
    color: #1A049E;
}

#progress-slideover.show {
    bottom: 0;
    background-color: #C2CEEB;
}

.progress-bar-container {
    background-color: #D4D9E8;
    color: #1A049E;
}

.progress-bar-container i {
    color: #1A049E;
    font-size: 24px;
}

#progress-slideover hr {
    border-color: #1A049E;
}
