/* =========================
   CUSTOMERS PAGE
========================= */

/* Container header */
.customers-header h2 {
    margin-bottom: 12px;
}

/* Search & filter wrapper */
.customers-controls {
    margin-bottom: 16px;
}

/* Search input */
.customers-controls input[type="text"] {
    width: 100%;
    padding: 12px;
    font-size: 14px;
    border-radius: 10px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    margin-bottom: 10px;
}

/* Filter box (reuse style) */
.customers-controls .filter-box {
    margin-bottom: 0;
}

/* =========================
   BRANCH FILTER BUTTONS
========================= */
.branch-filter-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.branch-filter-buttons button {
    padding: 8px 14px;
    font-size: 13px;
    border-radius: 20px;
    border: 1px solid #ccc;
    background: #fff;
    cursor: pointer;
    color: #000;
}

.branch-filter-buttons button.active {
    background: #222;
    color: #fff;
    border-color: #222;
}


/* =========================
   CUSTOMER LIST ITEM
========================= */
.customer-item {
    display: block;
    padding: 14px;
    border-radius: 12px;
    background: #f7f7f7;
    margin-bottom: 10px;
    text-decoration: none;
    color: #222;
    transition: background 0.15s ease;
}

.customer-item:hover {
    background: #ececec;
}

.customer-item b {
    font-size: 15px;
    display: block;
}

.customer-item small {
    display: block;
    font-size: 13px;
    color: #666;
    margin-top: 2px;
}

.customer-item .customer-meta {
    margin-top: 6px;
    font-size: 13px;
    color: #555;
}

/* Link ke detail */
.customer-item a {
    display: inline-block;
    margin-top: 6px;
    font-size: 13px;
    color: #222;
    text-decoration: underline;
}