:root {
    --location-header: 56,182,255; /*blue */
    --location-text: 255, 255, 255; /*white*/
}
.account-container {
    min-width: 400px;
    background: white;
    padding: 20px;
    margin: auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.user-profile img {
    width: 100px;
    border-radius: 50%;
}

.user-profile h3, .user-profile p {
    margin: 10px 0;
}

form {
    display: flex;
    flex-direction: column;
}

input {
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
}

select {
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
}

button {
    padding: 10px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
}

button:hover {
    background: #0056b3;
}

.sLevel1{
    background-color: rgb(var(--location-header));
    color: rgb(var(--location-text));
    padding-left: 11px;
 }
 
.sLevel2{
    background-color: rgba(var(--location-header),.4);
    color: rgb(var(--location-text));
    padding-left: 11px;
}