.incubatees-map-container {
    width: 100%;
    padding: 60px 0;
    background: #f8f9fa;
}

.incubatees-map-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 auto 40px;
    max-width: 1200px;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .incubatees-map-title {
        font-size: 22px;
        margin-bottom: 24px;
        padding: 0 12px;
    }
}

.incubatees-map-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 24px;
    padding: 0 20px;
    height: 500px;
}

.incubatees-map-sidebar {
    flex: 0 0 280px;
    background: white;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    height: 500px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.incubatees-map-sidebar h3 {
    margin: 0;
    padding: 16px;
    background: #f1f5f9;
    border-bottom: 1px solid #e2e8f0;
    font-size: 16px;
    color: #1e293b;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.incubatees-map-sidebar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    overflow-y: auto;
    flex: 1;
}

.incubatees-map-sidebar li {
    padding: 12px 16px;
    border-bottom: 1px solid #f1f5f9;
    cursor: pointer;
    transition: background 150ms ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #334155;
}

.incubatees-map-sidebar li:hover {
    background: #fff7ed;
}

.incubatees-map-sidebar li.active {
    background: #ffd699;
    font-weight: bold;
    color: #7c2d12;
}

.incubatees-map-sidebar .state-count {
    background: #ff9900;
    color: white;
    border-radius: 12px;
    padding: 2px 10px;
    font-size: 12px;
    font-weight: bold;
    flex-shrink: 0;
    margin-left: 8px;
}

.incubatees-map-wrapper {
    flex: 1;
    text-align: center;
    height: 500px;
    position: relative;
}

.incubatees-map-wrapper svg {
    display: block;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    max-height: 500px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.map-reset-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    width: 36px;
    height: 36px;
    border-radius: 6px;
    border: 1px solid #cbd5e1;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: background 150ms, box-shadow 150ms;
}
.map-reset-btn:hover {
    background: #f1f5f9;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.map-reset-btn svg {
    width: 18px;
    height: 18px;
    stroke: #475569;
}

/* Mobile overlay */
.mobile-overlay {
    display: none;
}

/* Hamburger button */
.map-hamburger {
    display: none;
}

/* Sidebar close button (mobile only) */
.sidebar-close {
    display: none;
}

/* Mobile styles */
@media (max-width: 768px) {
    .incubatees-map-container {
        padding: 30px 0;
        position: relative;
        overflow: hidden;
    }

    .incubatees-map-layout {
        flex-direction: column;
        height: auto;
        gap: 16px;
        padding: 0 12px;
    }

    .incubatees-map-sidebar {
        display: none;
        position: absolute;
        top: 0;
        left: 0;
        width: 280px;
        height: 100%;
        z-index: 1001;
        border-radius: 0;
        transform: translateX(-100%);
        transition: transform 300ms ease;
    }

    .incubatees-map-sidebar.open {
        display: flex;
        transform: translateX(0);
    }

    .incubatees-map-sidebar h3 {
        border-top: none;
    }

    .sidebar-close {
        display: block;
        background: none;
        border: none;
        font-size: 20px;
        cursor: pointer;
        color: #475569;
        padding: 0;
        width: 28px;
        height: 28px;
        line-height: 28px;
        text-align: center;
        border-radius: 4px;
    }

    .sidebar-close:hover {
        background: #e2e8f0;
    }

    .incubatees-map-wrapper {
        height: 400px;
    }

    .incubatees-map-wrapper svg {
        max-height: 400px;
    }

    .map-hamburger {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 12px;
        left: 12px;
        width: 40px;
        height: 40px;
        background: white;
        border: 1px solid #e2e8f0;
        border-radius: 8px;
        cursor: pointer;
        z-index: 10;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
        padding: 0;
    }

    .map-hamburger:hover {
        background: #f1f5f9;
    }

    .map-hamburger svg {
        width: 20px;
        height: 20px;
        color: #334155;
        background: transparent;
        border: none;
        border-radius: 0;
        margin: 0;
    }

    .mobile-overlay {
        display: none;
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.45);
        z-index: 1000;
    }

    .mobile-overlay.active {
        display: block;
    }
}

.state-marker {
    pointer-events: none;
}

.state-count {
    pointer-events: none;
}
