body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    height: 100vh;
    overflow: hidden;
}
#password-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: #f0f0f0;
}
#password-container input {
    padding: 10px;
    margin-bottom: 20px;
    font-size: 16px;
}
#password-container button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #933592;
    color: white;
    border: none;
    cursor: pointer;
}
#container {
    display: none;
    flex: 1;
    height: 100vh;
    width: 100vw;
}
#sidebar {
    width: 20%;
    background-color: #f0f0f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    box-sizing: border-box;
    overflow: auto;
}
.logo-container {
    width: 100%;
    padding: 20px 0;
    text-align: center;
}
.logo {
    width: 60%;
}
#sidebar button {
    width: 80%;
    padding: 10px;
    background-color: #933592;
    border: none;
    color: white;
    font-size: 16px;
    margin-bottom: 20px;
    cursor: pointer;
}
#content-container {
    flex: 1;
    position: relative;
}
.page {
    display: none;
    padding: 20px;
}
.page.active {
    display: block;
    height: 100%;
}
#map-container {
    display: flex;
    flex-direction: column;
    height: 100%;
}
#map {
    height: 70vh;
    width: 100%;
}
#input-container {
    background-color: #933592;
    padding: 10px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#input-container input {
    flex: 1;
    padding: 10px;
    margin-right: 10px;
    border: none;
    border-radius: 5px;
}
#input-container button {
    padding: 10px 20px;
    background-color: white;
    border: 2px solid #933592;
    color: #933592;
    border-radius: 5px;
    cursor: pointer;
}
#address-list {
    background-color: #933592;
    padding: 10px;
    box-sizing: border-box;
    transition: max-height 0.3s;
}
#address-list h3 {
    color: white;
}
#address-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 150px;
    overflow-y: auto;
}
#address-list li {
    color: white;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#address-list li button {
    padding: 5px 10px;
    background-color: white;
    border: 2px solid #933592;
    color: #933592;
    border-radius: 5px;
    cursor: pointer;
}
.tooltip {
    position: absolute;
    background-color: white;
    border: 1px solid #ccc;
    padding: 5px;
    display: none;
    z-index: 1000;
}
.collapsible {
    cursor: pointer;
    user-select: none;
    background-color: #933592;
    color: white;
    padding: 10px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 16px;
}
.collapsible:after {
    content: '\002B';
    color: white;
    font-weight: bold;
    float: right;
}
.active:after {
    content: "\2212";
}
.content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}
.scrollable {
    max-height: 150px;
    overflow-y: auto;
}
