/* ── Shared page layout shells ────────────────────────────────────── */

.page-wrapper {
    min-height: 100vh;
    padding: 2rem 1rem;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.page-header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.page-header-icon {
    width: 48px;
    height: 48px;
    background: #2889AA;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.page-header-text h1 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 0.2rem;
}

.page-header-text p {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0;
    font-weight: 400;
}

/* Generic search input used inside page headers */
.search-wrap { position: relative; }
.search-wrap i {
    position: absolute;
    left: 0.85rem;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 0.85rem;
}
.search-input {
    padding: 0.5rem 1rem 0.5rem 2.25rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 0.6rem;
    font-size: 0.875rem;
    color: #374151;
    background: #fff;
    outline: none;
    width: 260px;
    transition: border-color 0.2s;
}
.search-input:focus { border-color: #2889AA; }
