/* Container styling */
.rounded-container {
    /*text-decoration: none;*/
    /*background-color: #F6B11A !important;*/
    /*border-radius: 60px !important;*/
    /*padding: 6px 30px 6px 30px !important;*/
    /*display: flex;*/
    /*align-items: center;*/
    /*justify-content: center;*/
    /*width: fit-content;*/
    width: 50px !important;
    height: 50px !important;
    /*margin: 10px auto;*/
}

.rounded-container:hover {
    opacity: 0.9; /* Adjust opacity on hover for visual feedback */
}

.image {
    width: 25px !important;
    height: 25px !important;
    margin-right: 20px; /* Adjust spacing as needed */
}

.right-edge {
    margin-right: 30px;
}

/* Link styling */
.full-container-link {
    color: #000;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
}

.login-cart-container {
    display: flex;
    align-items: center;
}

.cart-icon-wrapper {
    position: relative;
    display: inline-block;
}

.cart-item-count {
    position: absolute;
    top: -5px; /* Adjust as needed */
    right: 2px; /* Adjust as needed */
    background-color: #f6b11a;
    color: black;
    border-radius: 50%;
    padding: 2px 5px;
    font-size: 12px;
    font-weight: bold;
}