/* Logo container styling for header */
.brand-logo {
    position: relative;
    width: 45px;
    height: 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Top box - white with border */
.logo-box-top {
    width: 45px;
    height: 10px;
    background-color: white;
    border: 1px solid black;
    position: relative;
    z-index: 10;
}

/* Middle box - black with 3D effect, shifted right */
.logo-box-middle {
    width: 45px;
    height: 10px;
    background-color: black;
    position: relative;
    margin-top: -1px;
    margin-left: 12px;
    z-index: 20;
    box-shadow: -3px 3px 0px 0px rgba(0, 0, 0, 0.25);
}

/* Bottom box - white with border */
.logo-box-bottom {
    width: 45px;
    height: 10px;
    background-color: white;
    border: 1px solid black;
    position: relative;
    margin-top: -1px;
    z-index: 10;
} 