/* layout-parts.css */
.header {
    height: 70px;
    background: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 32px;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 10;
}

.search-bar {
    background: #f1f5f9;
    padding: 8px 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    width: 300px;
}

.search-bar input {
    background: transparent;
    border: none;
    outline: none;
    width: 100%;
}

.profile-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.profile-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.footer {
    padding: 24px 32px;
    background: white;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 14px;
    margin-top: auto;
}