﻿

div.CartHeader {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    max-width: 350px;
    gap: 10px;
    align-items: center;
}
div.CartHeader_CustomerName {
    display: flex;
    width: 100%;
    justify-content: flex-end;
}

span.CartHeader_CustomerName {
    display: flex;
    font-size: 22px;
    font-weight: bold;
    text-align: right;
    /*width: 100%;*/
    cursor: pointer;
}

span.CartCircle {
    height: 5px; 
    width: 5px;
    border-radius: 50%; 
    background-color: #FE9C06; 
    color: white; 
    font-size: 13px;
    font-weight: bold;
    border: 2px solid white;
    padding: 10px; 
    
    display: flex;
    align-items: center; /* Vertical centering */
    justify-content: center; /* Horizontal centering */
    text-align: center; /* Fallback for older browsers */
    cursor: pointer;
    opacity: .9;
}

td.CartHeader_LoginLogout {
    /*text-align: right;
    padding: 12px 6px 12px 6px;
    padding-bottom: 10px;*/
}

img.CartHeader_Button {
    /*flex-shrink: 0;*/
    cursor: pointer;
    display: inline-block;
}

img.LoginLogout:hover {
    flex-shrink: 0;
    cursor: pointer;
}

div.CartHeader_ShoppingCart {
    background-image: url("/Images/Cart.png");
    background-repeat: no-repeat;
    background-position: center center;
    height: 45px;
    width: 55px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    /*justify-content: center;
    text-align: center;
    vertical-align: central;*/
}