
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #fffaf4;
    color: #333;
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #e0f0e0;
    padding: 10px 20px;
}

.topbar img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}


.logo {
    font-weight: bold;
    font-size: 1.3em;
    color: #A372F2;
}

.logo span {
    color: #A372F2;
}

.profile-icon {
    font-size: 1.5em;
}

.slider {
    position: relative;
    max-width: 100%;
    margin: 10px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slides {
    width: 100%;
    text-align: center;
}

.slide {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.prev, .next {
    background-color: transparent;
    border: none;
    font-size: 2em;
    cursor: pointer;
    color: #999;
    padding: 0 10px;
}

h2, h4 {
    text-align: center;
    margin: 10px;
}

.steps {
    padding: 0 20px 80px 20px;
}

.steps p {
    background: #f3e0da;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.bottombar {
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    background: #e6f2e6;
    position: fixed;
    width: 100%;
    bottom: 0;
}

.bottombar img {
    width: 28px;
    height: 28px;
}

.completeness-meter {
    text-align: center;
    margin-top: 8px;
}

.dot {
    height: 10px;
    width: 10px;
    margin: 0 4px;
    background-color: #cbd5d8;
    border-radius: 50%;
    display: inline-block;
}

.dot.active {
    background-color: #A0CDB4;
}

.action-buttons {
    text-align: right;
    padding: 0 20px 10px;
    position: relative;
}

.save-btn {
    background: none;
    border: none;
    font-size: 1.6em;
    cursor: pointer;
    color: #A0CDB4;
}

#toast {
    visibility: hidden;
    min-width: 220px;
    margin-top: 10px;
    background-color: #A0CDB4;
    color: white;
    text-align: center;
    border-radius: 8px;
    padding: 10px;
    position: absolute;
    right: 0;
    z-index: 1;
}

#toast.show {
    visibility: visible;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@keyframes fadein {
    from {opacity: 0;}
    to {opacity: 1;}
}

@keyframes fadeout {
    from {opacity: 1;}
    to {opacity: 0;}
}
