.category-list,
.product-listing,
.cart-product {
    padding: 20px;
    border: 1px solid #000;
    height: 80vh;
}

.category-list {
    background-color: #e9ecef;
}

.cart-product {
    background-color: #e9ecef;
}

.product-listing {
    background-color: #fff;
}

.profile-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
}

.dropdown-menu-custom {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    background-color: #fff;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
    z-index: 1000;
    width: 200px;
    /* Adjust width to fit content */
}

.dropdown-menu-custom.show {
    display: block;
}

.dropdown-item-custom {
    padding: 10px 20px;
    cursor: pointer;
}

.dropdown-item-custom:hover {
    background-color: #b9b9ba;
}

.dropdown-divider {
    height: 1px;
    margin: 0.5rem 0;
    overflow: hidden;
    background-color: #e9ecef;
}

.cart-button {
    display: flex;
    align-items: center;
}

.cart-button svg {
    margin-right: 5px;
}

.col-12 {
    flex: 0 0 auto;
    width: 50%;
}

.card {
    transition: transform 0.2s;
    border: 1px solid #e0e0e0;
    border-radius: 0.5rem;
}

.card:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card-img-top {
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
}

.card-footer {
    background-color: #f8f9fa;
    border-top: 1px solid #e0e0e0;
}