html, body {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
    overflow: hidden;
}

#map {
    height: 100%;
    width: 100%;
}

/* HEADER BAR */
.top-bar{
    height:56px;
    padding:0 16px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    background:#fff;
    box-shadow:0 1px 4px rgba(0,0,0,0.08);
}

/* LOGO WRAP */
.logo-wrap{
    display:flex;
    align-items:center;
    gap:8px;
    text-decoration:none;
}

/* ICON */
.site-logo{
    width:28px;
    height:28px;
    object-fit:contain;
    border-radius:6px;
}

/* TEXT */
.logo-text{
    font-size:16px;
    font-weight:500;
    color:#202124; /* giống Google */
}

/* HEADER */
.top-bar{
    height:56px;
    padding:0 16px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    background:#fff;
    border-bottom:1px solid #e5e7eb;
}

.logo-text{
    font-size:16px;
    font-weight:700;
    letter-spacing:0.3px;
    background:linear-gradient(
        90deg,
        #1e3a8a,
        #2563eb,
        #0ea5e9,
        #f59e0b,
        #2563eb,
        #1e3a8a
    );
    background-size:300% auto;
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;
    animation:logoShine 4s linear infinite;
}

@keyframes logoShine{
    0%{
        background-position:0% center;
    }
    100%{
        background-position:300% center;
    }
}

.menu-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.menu-right span {
    cursor: pointer;
    font-size: 15px;
}

/* ================= TOP TOOLS ================= */
.top-tools {
    position: absolute;
    top: 65px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1500;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.top-tools .btn {
    border-radius: 30px;
    padding: 6px 18px;
    font-size: 14px;
    white-space: nowrap;
}

/* ================= LEFT TOOLBAR ================= */
.left-toolbar {
    position: absolute;
    top: 150px;
    left: 15px;
    z-index: 1500;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.circle-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: white;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ================= BOTTOM FILTER ================= */
.bottom-filter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1500;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.bottom-filter .btn {
    border-radius: 30px;
    padding: 6px 15px;
    font-size: 14px;
    white-space: nowrap;
}

/* ================= MENU SLIDE ================= */


.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(2px);
    display: none;
    z-index: 3000;
}

.menu-overlay.active {
    display: block;
}

.menu-box {
    position: absolute;
    top: 0;
    left: -380px;
    width: 360px;
    height: 100%;
    background: #ffffff;
    padding: 0;
    overflow-y: auto;
    transition: 0.35s ease;
    box-shadow: 4px 0 20px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
}

.menu-overlay.active .menu-box {
    left: 0;
}

/* ===== HEADER MENU ===== */
.menu-header {
    background: linear-gradient(135deg, #f4a000, #ffb300);
    padding: 25px 20px;
    color: white;
    text-align: center;
}

.menu-logo {
    font-size: 22px;
    font-weight: 700;
  
    
}

.menu-header p {
    font-size: 13px;
    opacity: 0.9;
    margin: 0;
}
.menu-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 16px;
    border-radius: 30px;
    border: 2px solid #f4a000;
    color: #f4a000;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.25s ease;
}

/* Hover */
.menu-trigger:hover {
    background: #f4a000;
    color: white;
}
/* ===== MENU GRID ===== */
.menu-grid {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ===== ITEM ===== */
.menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 10px;
    background: #f9f9f9;
    border: 1px solid #eee;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.25s ease;
}

.menu-item:hover {
    background: #fff3e0;
    border-color: #f4a000;
    transform: translateX(4px);
}

/* Icon */
.menu-item span {
    font-size: 18px;
}

/* Scroll đẹp */
.menu-box::-webkit-scrollbar {
    width: 6px;
}

.menu-box::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 10px;
}

/* MOBILE */
@media (max-width: 576px) {
    .menu-box {
        width: 85%;
    }
}
/* ================= TABLET ================= */
@media (max-width: 992px) {

    .logo {
        font-size: 25px;
    }

    .menu-right span {
        font-size: 14px;
    }

    .left-toolbar {
        top: 130px;
    }

    .circle-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

}

/* ================= MOBILE ================= */
@media (max-width: 576px) {

    .menu-right .hide-mobile {
        display: none;
    }

    .logo {
        font-size: 25px;
    }

    .top-tools {
        top: 55px;
        left: 0;
        transform: none;
        width: 100%;
        padding: 10px 10px;
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        scrollbar-width: none;
    }

    .top-tools::-webkit-scrollbar {
        display: none;
    }

    .bottom-filter {
        left: 0;
        transform: none;
        width: 100%;
        padding: 0 10px;
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        scrollbar-width: none;
    }

    .bottom-filter::-webkit-scrollbar {
        display: none;
    }

    .left-toolbar {
        top: 110px;
        left: 10px;
    }

    .circle-btn {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }

    .menu-box {
        width: 85%;
    }

}

    .menu-link {
        text-decoration: none;
        color: #333;
        font-weight: 500;
        display: block;
    }

    .left-toolbar {

        position: absolute;

        top: 120px;

        left: 15px;

        display: flex;

        flex-direction: column;

        gap: 12px;

        z-index: 1500;

    }

    .circle-btn {

        width: 46px;

        height: 46px;

        border: none;

        border-radius: 50%;

        background: white;

        cursor: pointer;

        display: flex;

        align-items: center;

        justify-content: center;

        font-size: 18px;

        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);

        transition: 0.2s;

    }

    .circle-btn:hover {

        background: #f2f2f2;

        transform: scale(1.05);

    }

    .circle-btn i {

        color: #333;

    }

    a{
text-decoration:none;
}