/* public/css/header.css */

.app-header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 0.75rem 1rem 1.25rem;
    transition: ease 0.4s;
    -webkit-transition: ease 0.4s;
    -moz-transition: ease 0.4s;
    -ms-transition: ease 0.4s;
    -o-transition: ease 0.4s;
    background: linear-gradient(55deg, #0c2340 41.93%, #0072ce 130%);
}
.app-header.scrolled {
    background: linear-gradient(55deg, #0c2340 41.93%, #0072ce 130%);
    transition: ease 0.4s;
    -webkit-transition: ease 0.4s;
    -moz-transition: ease 0.4s;
    -ms-transition: ease 0.4s;
    -o-transition: ease 0.4s;
}
.app-header .header-outer {
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.app-header .header-left {
    flex: 1;
}
.app-header .logo {
    max-width: 8.75rem;
    height: auto;
    margin: 0;
}
.app-header .header-right {
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.app-header .icon-button {
    background-color: transparent;
    border: none;
    color: #1a1a3c;
    font-size: 1.5rem;
    margin-left: 1.25rem;
    cursor: pointer;
    transition: transform 0.2s;
    font-size: 1.375rem;
    margin-left: 0.9375rem;
}
.app-header .icon-button:hover {
    transform: scale(1.1);
}
.space-top {
    margin-top: 4.375rem;
}

#notifications svg {
    fill:#FFFFFF;
}
@media (min-width: 768px) {
    .space-top {
        margin-top: 6.375rem;
    }
    .app-header {
        padding: 1.25rem 2.5rem;
    }
    .app-header .logo {
        max-width: 9.375rem;
    }
    .app-header .icon-button {
        font-size: 1.75rem;
        margin-left: 1.5625rem;
    }
}
