/* Header Styles */
.header {
    background: white;
    box-shadow: none;
}

.header-content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Top Bar */
.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px;
    background: white;
    border: none;
    box-shadow: none;
}

.header-left {
    display: flex;
    align-items: center;
    background: none;
    box-shadow: none;
}

.header-logo-container img {
    margin-right: 32px;
    background: none;
    box-shadow: none;
}

.header-menu-btn {
    border: none;
    background: none;
    box-shadow: none;
    color: rgb(20, 81, 180);
    font-size: 14px;
    margin-left: 32px;
    cursor: pointer;
    padding: 0;
}

.header-menu-icon {
    font-size: 16px;
    background: none;
    box-shadow: none;
}

.header-divider {
    border-left: 1px solid rgb(204, 204, 204);
    height: 24px;
    margin: 0 16px;
    background: none;
    box-shadow: none;
}

.header-right {
    display: flex;
    align-items: center;
    background: none;
    box-shadow: none;
}

.header-icon-btn {
    border: none;
    background: none;
    box-shadow: none;
    color: rgb(20, 81, 180);
    cursor: pointer;
    margin-left: 24px;
    padding: 0;
}

.header-icon {
    font-size: 16px;
    background: none;
    box-shadow: none;
}

.header-user-btn {
    background-color: rgb(20, 81, 180);
    color: white;
    border: none;
    border-radius: 9999px;
    padding: 6px 16px;
    display: flex;
    align-items: center;
    font-size: 14px;
    cursor: pointer;
    margin-left: 24px;
    box-shadow: none;
}

.header-user-icon {
    color: white;
    margin-right: 8px;
    background: none;
    box-shadow: none;
    font-size: 16px;
}

/* Main Header */
.header-main {
    display: flex;
    align-items: center;
    padding: 1rem;
    gap: 1rem;
}

.header-logo {
    flex-shrink: 0;
}

.header-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: rgb(12, 50, 111);
}

.header-search {
    display: flex;
    align-items: center;
    flex: 1;
    max-width: 400px;
    margin-left: auto;
}

.header-search-input {
    flex: 1;
    padding: 0.5rem 1rem;
    border: 1px solid rgb(204, 204, 204);
    border-radius: 4px;
    font-size: 0.875rem;
}

.header-search-input:focus {
    outline: none;
    border-color: rgb(19, 81, 180);
}

.header-search-icon {
    width: 16px;
    height: 16px;
    margin-left: -2rem;
    cursor: pointer;
    fill: rgb(19, 81, 180);
}

/* Breadcrumb */
.breadcrumb {
    padding: 0.5rem 1rem;
    /* background: rgb(243, 243, 244); */
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.breadcrumb-item {
    color: rgb(19, 81, 180);
}

.breadcrumb-separator {
    color: rgb(153, 153, 153);
}

.breadcrumb-current {
    color: rgb(51, 51, 51);
}
