
.header {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 1000;
    height: var(--layout-header-height);
    padding: 0px !important;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header-border-top {
    position: absolute;
    z-index: 1;
    top: 0;
    width: 100%;
    height: 5px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    background-color: var(--bg-white);
}

.header-border-bottom {
    position: absolute;
    z-index: 1;
    bottom: 0;
    width: 100%;
    height: 5px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    background-color: var(--bg-white);
}

.header-content {
    background-color: var(--color-primary);
    color: var(--color-white);
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 20px;

}