/* Tutorial Page - Additional global styles */
#tutorial-app {
    min-height: 80vh;
}

/* Ensure the tutorial page background extends fully */
.tutorial-page {
    background: #f5f3f9;
}

/* ========== Address Autocomplete ========== */
.tut-autocomplete-wrapper {
    position: relative;
}

.tut-address-suggestions {
    position: absolute;
    z-index: 1050;
    top: 100%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 4px 0;
    list-style: none;
    background: #fff;
    border: 1px solid #dee2e6;
    border-top: none;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-height: 220px;
    overflow-y: auto;
}

.tut-address-suggestion-item {
    display: flex;
    align-items: center;
    padding: 10px 14px;
    font-size: 13px;
    cursor: pointer;
    transition: background-color 0.15s ease;
}

.tut-address-suggestion-item:hover,
.tut-address-suggestion-item:focus {
    background-color: rgba(105, 67, 155, 0.08);
    outline: none;
}

.tut-address-suggestion-item .fa-map-marker-alt {
    color: #69439b;
    flex-shrink: 0;
}
