.tabs-zone {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 10px 5px;
    box-sizing: border-box;
}

.tab-btn {
    width: 48%;
    padding: 12px 0;
    border: 1px solid transparent;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    outline: none;
    -webkit-tap-highlight-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tab-icon {
    width: 24px;
    height: 24px; /* Circular aspect ratio */
    margin-right: 8px;
    object-fit: contain;
    border-radius: 50%;
}

/* Taiwan Button - Blue Theme */
.tab-btn.tw {
    background: #fff;
    color: #1e90ff;
    border: 1px solid #1e90ff;
}

.tab-btn.tw.active {
    background: #1e90ff;
    color: #fff;
    box-shadow: 0 4px 10px rgba(30,144,255,0.4);
    border-color: #1e90ff;
}

/* Macau Button - Red Theme */
.tab-btn.am {
    background: #fff;
    color: #ff4d4f;
    border: 1px solid #ff4d4f;
}

.tab-btn.am.active {
    background: #ff4d4f;
    color: #fff;
    box-shadow: 0 4px 10px rgba(255,77,79,0.4);
    border-color: #ff4d4f;
}

.tab-btn:active {
    transform: scale(0.96);
}

/* Macau Panel Title Style */
#am-panel .list-title {
    background: #ff4d4f;
    color: #ffffff;
    text-shadow: none;
    border: none;
    border-radius: 8px 8px 0 0;
    padding: 10px 0;
    height: auto;
    line-height: 1.4;
    font-size: 18px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 0;
}
