* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Figtree", sans-serif;
    font-style: normal;
}

body, html {
    height: 100%;
    width: 100%;
}

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 200px;
    height: 100%;
    background-color: #2c3e50;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 0;
    z-index: 1000;
}

.top-icons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    align-items: center;
}

.top-icon {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #ecf0f1;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 8px;
    width: 100%;
    max-width: 180px;
    transition: background-color 0.2s, border 0.2s, color 0.2s ease;
    cursor: pointer;
    border: 1px solid transparent;
}

.top-icon:hover {
    background-color: #34495e;
    border: 1px solid #1abc9c;
    color: #ffffff;
}

.top-icon:hover span {
    font-weight: 600;
}

.top-icon a {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: white;
    width: 100%;
}

.bottom-icons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    align-items: center;
    margin-top: auto;
}

.bottom-icon {
    color: #ecf0f1;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 8px;
    width: 100%;
    max-width: 180px;
    transition: background-color 0.2s, border 0.2s, color 0.2s ease;
    cursor: pointer;
    border: 1px solid transparent;
}

.bottom-icon a {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: white;
    width: 100%;
}

.bottom-icon:hover {
    background-color: #34495e;
    border: 1px solid #1abc9c;
    color: #ffffff;
}

.bottom-icon:hover span {
    font-weight: 600;
}

.logotyp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    color: #ecf0f1;
    padding: 0 10px;
}

.logo {
    font-size: 24px;
}

.title {
    font-size: 16px;
    font-weight: bold;
}

.search-bar {
    display: flex;
    align-items: center;
    background-color: #ecf0f1;
    border-radius: 8px;
    padding: 8px 12px;
    margin: 0 10px 30px 10px;
    width: 100%;
    max-width: 180px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.search-bar i {
    color: #7f8c8d;
    margin-right: 8px;
    font-size: 14px;
}

.search-bar input {
    border: none;
    outline: none;
    background: transparent;
    width: 100%;
    font-size: 14px;
    color: #2c3e50;
}

.search-bar input::placeholder {
    color: #7f8c8d;
}

#map {
    height: 100vh;
    width: calc(100vw - 200px);
    margin-left: 200px;
    position: relative;
    z-index: 1;
}
