/* Branch Selector Styles - Minimal Mobile-First Design */
.branch-selector-area {
    background: #fff;
    border-bottom: 1px solid #e9ecef;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.branch-selector-wrapper {
    max-width: 100%;
}

.branch-tabs {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.branch-tab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: #f8f9fa;
    border: 2px solid transparent;
    border-radius: 25px;
    text-decoration: none;
    color: #6c757d;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.branch-tab:hover {
    background: #e9ecef;
    color: #495057;
}

.branch-tab.active {
    background: linear-gradient(135deg, #c5a47e 0%, #a8875f 100%);
    border-color: #c5a47e;
    color: #fff;
    box-shadow: 0 3px 10px rgba(197,164,126,0.3);
}

.branch-tab i {
    font-size: 18px;
}

.branch-tab span {
    font-size: 14px;
}

/* Responsive */
@media only screen and (max-width: 576px) {
    .branch-selector-area {
        padding: 12px 0;
    }

    .branch-tabs {
        gap: 8px;
        padding: 0 10px;
    }

    .branch-tab {
        padding: 8px 16px;
        font-size: 13px;
        flex: 1;
        justify-content: center;
        min-width: calc(50% - 4px);
    }

    .branch-tab i {
        font-size: 16px;
    }

    .branch-tab span {
        font-size: 13px;
    }
}

@media only screen and (max-width: 400px) {
    .branch-tab {
        padding: 8px 12px;
        font-size: 12px;
    }

    .branch-tab span {
        font-size: 12px;
    }
}
