.phone-frame {
    width: 300px;
    height: 600px;
    border-radius: 40px;
    border: 10px solid black;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
    background: #1e1e1e;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index:9999!important;
}
.screen {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    background: white;
    position: relative;
}
.notch {
    width: 150px;
    height: 30px;
    background: #1e1e1e;
    border-radius: 20px;
    position: absolute;
    top:-10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index:9999;
}
.camera {
    width: 8px;
    height: 8px;
    background: #565656;
    border-radius: 50%;
}
.sound-buttons {
    position: absolute;
    left: -12px;
    top: 100px;
    width: 5px;
    height: 40px;
    background: #333;
    border-radius: 10px;
}
.sound-buttons::after {
    content: "";
    display: block;
    width: 5px;
    height: 25px;
    background: #333;
    border-radius: 10px;
    margin-top: 10px;
}
.bottom-menu {
    position: absolute;
    bottom: 0;
    width: 280px;
    height: 150px;
    background: rgba(250, 250, 250, 0.8);
    backdrop-filter: blur(2px); 
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    color: white;
    z-index: 9999;
    padding: 10px;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.2);
}
.leaflet-control-zoom {
    top: 50px !important;
}
figcaption {
    font-size: 0.9rem;
    font-style: italic;
    color: #6c757d;
    text-align: center;
    margin-top: 0;
    border-top:1px solid rgb(217, 217, 217);
    padding: 8px;
    background-color: #f3f9f9; 
}
