.poi-container {
    position: relative;
    cursor: pointer;
    transform: translate(-25%, -50%);
}

.poi-marker {
    display: flex;
    justify-content: center;
    align-items: center;
}

.poi-label {
	position: relative;
    background: transparent;
    color: white;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    text-shadow:
        -1px -1px 2px rgba(0, 0, 0, 0.8),
        1px -1px 2px rgba(0, 0, 0, 0.8),
        -1px 1px 2px rgba(0, 0, 0, 0.8),
        1px 1px 2px rgba(0, 0, 0, 0.8),
        0 0 4px rgba(0, 0, 0, 0.9);
    transition: transform 0.2s ease, text-shadow 0.2s ease;
    letter-spacing: 0.3px;
}
.poi-label.air{
	text-shadow: -1px -1px 2px #018fa0, 1px -1px 2px #018fa0, -1px 1px 2px #018fa0, 1px 1px 2px #018fa0, 0 0 4px #018fa0;
}
.poi-label::before{
    position: absolute;
    text-shadow: none;
    top: -15px;
    font-size: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 4px;
    min-width: 17px;
}
.poi-label.air::before{
    content: '공항철도';
    color: #018fa0;
    border: 1px solid #018fa0;
}
.poi-label.seoul1{
	text-shadow: -1px -1px 2px #052f93, 1px -1px 2px #052f93, -1px 1px 2px #052f93, 1px 1px 2px #052f93, 0 0 4px #052f93;
}
.poi-label.seoul1::before{
    content: '1';
    color: #052f93;
    border: 1px solid #052f93;
}
.poi-label.seoul2{
	text-shadow: -1px -1px 2px #38b448, 1px -1px 2px #38b448, -1px 1px 2px #38b448, 1px 1px 2px #38b448, 0 0 4px #38b448;
}
.poi-label.seoul2::before{
    content: '2';
    color: #38b448;
    border: 1px solid #38b448;
}
.poi-label.seoul7{
	text-shadow: -1px -1px 2px #927d1f, 1px -1px 2px #927d1f, -1px 1px 2px #927d1f, 1px 1px 2px #927d1f, 0 0 4px #927d1f;
}
.poi-label.seoul7::before{
    content: '7';
    color: #927d1f;
    border: 1px solid #927d1f;
}

.poi-label.suin{
	text-shadow: -1px -1px 2px #ffce34, 1px -1px 2px #ffce34, -1px 1px 2px #ffce34, 1px 1px 2px #ffce34, 0 0 4px #ffce34;
}
.poi-label.suin::before{
    content: '수인분당';
    color: #ffce34;
    border: 1px solid #ffce34;
}
.poi-label.incheon1{
	text-shadow: -1px -1px 2px #6496df, 1px -1px 2px #6496df, -1px 1px 2px #6496df, 1px 1px 2px #6496df, 0 0 4px #6496df;
}
.poi-label.incheon1::before{
    content: '인천1';
    color: #6496df;
    border: 1px solid #6496df;
}
.poi-label.incheon2{
	text-shadow: -1px -1px 2px #cf843c, 1px -1px 2px #cf843c, -1px 1px 2px #cf843c, 1px 1px 2px #cf843c, 0 0 4px #cf843c;
}
.poi-label.incheon2::before{
    content: '인천2';
    color: #cf843c;
    border: 1px solid #cf843c;
}
.poi-label.maglev{
	text-shadow: -1px -1px 2px #3c84f0, 1px -1px 2px #3c84f0, -1px 1px 2px #3c84f0, 1px 1px 2px #3c84f0, 0 0 4px #3c84f0;
}
.poi-label.maglev::before{
    content: '자기부상철도';
    color: #3c84f0;
    border: 1px solid #3c84f0;
}
.poi-container:hover .poi-label {
    transform: scale(1.08);
    text-shadow:
        -1px -1px 3px rgba(0, 0, 0, 0.9),
        1px -1px 3px rgba(0, 0, 0, 0.9),
        -1px 1px 3px rgba(0, 0, 0, 0.9),
        1px 1px 3px rgba(0, 0, 0, 0.9),
        0 0 6px rgba(0, 0, 0, 1);
}

.poi-detail-panel {
    position: absolute;
    bottom: -120px;
    transform: translateX(-50%);
    width: 20rem;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    padding: 12px;
    z-index: 10;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.panel-header {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 6px;
    color: #1a73e8;
}

.panel-info-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 6px;
}

.panel-info-label {
    color: #5f6368;
    font-weight: 500;
}

.panel-info-value {
    color: #202124;
}

.panel-close-btn {
    position: absolute;
    top: 8px;
    right: 10px;
    cursor: pointer;
    font-size: 18px;
    color: #5f6368;
    font-weight: 300;
}

.panel-close-btn:hover {
    color: #202124;
}

.poi-exit-ico {
    font: 10px Pretendard GOV;
    background-color: #fef662;
    border: 1px solid #725e15;
    width: 15px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
}

