#cesiumContainer {
    width: 100%;
    height: 100%;
    position: relative;
    transition: height 0.3s ease;
    overflow: visible; /* Allow children like buttons to be fully visible */
}

#cesiumContainer.enlarged {
    height: 570px !important;
    width: 100% !important;
    position: relative !important;
    z-index: 1000;
    overflow: visible;
}

/* Main zoom toggle button */
#mapToggleBtn {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1000;
    cursor: pointer;

    background: none;
    border: none;
    padding: 0;
    margin: 0;
    outline: none;
    appearance: none;
    background-color: transparent;
}

/* Zoom toggle button circle (rotated) */
#mapToggleBtn .btku5b {
    display: inline-block;
    width: 40px;
    height: 40px;
    padding: 6px;
    border-radius: 50%;
    background-color: rgba(50, 50, 50, 0.8); /* dark gray background */
    transform: rotate(45deg);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    transition: background-color 0.2s ease;
}

/* Hover effect on zoom toggle */
#mapToggleBtn:hover .btku5b {
    background-color: rgba(50, 50, 50, 1);
}

/* Flex containers for centering icon inside */
#mapToggleBtn .niO4u,
#mapToggleBtn .kHtcsd,
#mapToggleBtn .d3o3Ad,
#mapToggleBtn .gJdC8e,
#userLocationBtn .niO4u,
#userLocationBtn .kHtcsd,
#userLocationBtn .d3o3Ad,
#userLocationBtn .gJdC8e {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

/* Icons inside both buttons */
#mapToggleBtn svg,
#mapToggleBtn .gJdC8e svg,
#userLocationBtn svg {
    width: 20px;
    height: 20px;
    fill: white; /* white icons */
}

/* User location button */
#userLocationBtn {
    position: absolute;
    bottom: 10px;
    left: 10px;
    z-index: 1001;
    cursor: pointer;
    display: none;

    width: 40px;
    height: 40px;
    padding: 6px;
    background-color: rgba(50, 50, 50, 0.8); /* dark gray background */
    border-radius: 50%;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* Force white icon color inside user location button */
#userLocationBtn svg,
#userLocationBtn svg path {
    fill: white !important;
}

/* Hover/focus/active states for location button */
#userLocationBtn:hover,
#userLocationBtn:focus {
    background-color: rgba(50, 50, 50, 1);
}

#userLocationBtn:active {
    box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.2);
}
