    *{
        user-select: none;
   
    }
    
    #mapContainer {
        border-radius: 10px 10px 0 0;
        background-color: #E6E6E6;
        transform: translateY(100%); 
        transition: all 0.2s ease-in-out;
        position: fixed;
        bottom: 0;
      display: none; 
      width: 400px;
      height: 80%;
      margin: auto;
      z-index: 9999999999999999999999999;
     
    }
    #map {
      width: 100%;
      height: 100%;
      border: 0;
    }

    #x {
        height: 40px;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
    }
    #x img {
        cursor: pointer;
        width: 23px;
        margin-left: 4px;
    }
body {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

    #phone {
        top: 0;
        position: fixed;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        min-width: 400px;
        height: 100%;
        background-image: url('files/screen.png');
        background-size: cover; 
        background-position: center; 
        background-repeat: no-repeat;
    }
   


    #notification {
   
        transition: top 0.3s ease-in-out;
        top: -400px;
        /* transform: translateX(50%); */
      
        background-color: rgba(255, 255, 255, 0.571);
        padding: 20px;
        width: 88%;
        border-radius: 15px;
        backdrop-filter: blur(10px);
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
        display: flex;
        flex-direction: row;
        gap: 15px;
        align-items: center;
        position: relative;
        cursor: pointer;
    }

    .icon {
        width: 50px;
        height: 50px;
        border-radius: 10px;
        background-color: #E99024;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 24px;
        color: white;
    }
.icon img {
height: 40px;
    width: 40px;
  
}
    .text {
        display: flex;
    flex-direction: column; 
    justify-content: space-between; 
    align-items: flex-end;
        flex: 1;
    }

    .title {
        color: red;
        font-weight: bold;
        font-size: 16px;
        display: flex;
        align-items: center;
    }
.title img {
    height: 13px;
    width: 13px;
    margin-left: 5px;
}
   
    .subtitle {
        font-weight: bold;
        font-size: 18px;
        margin: 5px 0;
    }

    .message {
        font-size: 14px;
        color: #333;
        line-height: 1.5;
    }

    .time {
        position: absolute;
        top: 10px;
        left: 10px;
        font-size: 12px;
        color: gray;
    }


    #pikSc {
        
        scale: 0;
        position: fixed;
        top: 0;
        max-width: 400px;
        z-index: 9999999;
        transition: all 0.2s ease-in-out;
    }
    

    #showMap {
        cursor: pointer;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3); 
        position: fixed;
        top: 30%;
        background-color: #FE0200;
        border-radius: 200px;
        width: 30vh;
        height: 30vh;
        z-index: 9999999999;
        display: flex;
    flex-direction: column; 
 font-weight: bold;
 color: white;
 font-size: 30px;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    scale: 0;
    transition: all 0.2s ease-in-out;
    }
    #showMap img {
        width: 50px;
        height: 50px;
            }