/* 🌍 MAP CONTAINER */
#jaobeit-map {
    width: 100%;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
}

/* 📦 CATEGORY CONTAINER */
#jaobeit-categories {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

/* ROWS */
#jaobeit-categories .row {
    display: flex;
    justify-content: center;
    gap: 10px;
}

/* 🎯 BUTTON BASE */
.cat-btn {
    padding: 10px 16px;
    border-radius: 30px;
    border: none;
    color: #fff;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    min-width: 100px;
    text-align: center;
    transition: all 0.2s ease;
}

/* 🎨 COLORS */
.hospital { background: #e74c3c; }  /* red */
.clinic   { background: #27ae60; }  /* green */
.mobile   { background: #f39c12; }  /* orange */

.groom    { background: #3498db; }  /* blue */
.board    { background: #8e44ad; }  /* violet */
.shop     { background: #8b4513; }  /* brown */

/* ✨ HOVER EFFECT */
.cat-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* 🔥 ACTIVE BUTTON */
.cat-btn.active {
    transform: scale(1.08);
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    outline: 2px solid #fff;
}

/* 📦 INFO BOX (TOP LEFT) */
.jaobeit-info-box {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 9999;
    background: #ffffff;
    padding: 12px 15px;
    border-radius: 10px;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    max-width: 220px;
}

/* 🚨 EMERGENCY BUTTON */
.jaobeit-emergency-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    padding: 14px 20px;
    background: #e74c3c;
    color: #fff;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: all 0.2s ease;
}

.jaobeit-emergency-btn:hover {
    background: #c0392b;
    transform: scale(1.05);
}

/* 📱 MOBILE OPTIMIZATION */
@media (max-width: 768px) {

    #jaobeit-map {
        height: 400px;
    }

    .cat-btn {
        min-width: auto;
        padding: 8px 12px;
        font-size: 12px;
    }

    #jaobeit-categories .row {
        gap: 6px;
    }

    .jaobeit-info-box {
        font-size: 12px;
        padding: 8px 10px;
    }

    .jaobeit-emergency-btn {
        padding: 10px 14px;
        font-size: 12px;
    }
}