.lt_weather {
}
.lt_weather .tabs {
    display: flex;
}

.lt_weather .tab {
    flex: 1;
    text-align: center;
    padding: 10px;
    cursor: pointer;
    background: #f0f0f0;
    margin-right: 2px;
    border: 1px solid #EEE;
    border-bottom: none;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    position: relative;
}

/* 선택된 탭 강조 */
.lt_weather .tab.active {
    background: #ffffff;
    border: 1px solid #4a90e2;
    border-bottom: none;
    color: #4a90e2;
    font-weight: bold;
    z-index: 2;
}

/* 탭 내용 영역 */
.lt_weather .content {
    display: none;
    border: 1px solid #ccc;
    padding: 15px;
    background: #ffffff;
    border-top: none;
}

.lt_weather .content.active {
    display: block;
}
