/* ── Breadcrumb ── */
.jp-breadcrumb {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px 0;
    font-size: 13px;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.jp-breadcrumb a {
    color: #64748b;
    text-decoration: none;
}

.jp-breadcrumb a:hover {
    color: #1962eb;
}

.jp-breadcrumb .sep {
    color: #cbd5e1;
}

.jp-breadcrumb .cur {
    color: #334155;
    font-weight: 600;
}

/* ── Page Header ── */
.list-header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 20px 30px;
}

.list-header h1 {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
}

.list-header p {
    font-size: 16px;
    color: #64748b;
}

/* 🔢 Pagination */
.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 50px;
    padding-bottom: 80px;
}

.pg-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    background: white;
    color: #64748b;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.pg-btn:hover:not(.disabled) {
    border-color: #1962EB;
    color: #1962EB;
    background: #f0f7ff;
}

.pg-btn.active {
    background: #1962EB;
    color: white;
    border-color: #1962EB;
}

.pg-btn.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.pg-btn.prev-next {
    width: auto;
    padding: 0 15px;
}

/* 🔍 Filter/Search Bar in List */
.list-controls {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin-top: 0px;
    position: relative;
    z-index: 20;
    display: flex;
    gap: 15px;
    align-items: center;
}

.list-search {
    flex: 1;
    position: relative;
}

.list-search input {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.2s;
}

.list-search input:focus {
    border-color: #1962EB;
}

.list-search svg {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
}

.list-count {
    font-size: 14px;
    color: #64748b;
    font-weight: 600;
}