/* Cart Dropdown Section */
.dropdown-cart-section {
    background: #1a1a1a; /* Dark grey background to match the table */
    color: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    width: 100%; /* Adjust width to fit in the dropdown */
}

.dropdown-cart-item {
    display: flex;
    align-items: center;
    background: #2d2d2d; /* Darker grey background for dropdown items */
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 8px;
}

.dropdown-cart-item img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    border-radius: 6px;
    border: 1px solid #444;
}

.dropdown-cart-item-details {
    flex: 1;
    color: #f5f5f5;
}

.dropdown-total-section {
    display: flex;
    justify-content: space-between;
    background: #2d2d2d;
    padding: 10px 15px;
    border-radius: 8px;
    margin-top: 10px;
}

.dropdown-total-text {
    font-size: 14px;
    font-weight: bold;
    color: #ff9900;
}

.dropdown-checkout-button {
    background: #ff9900;
    color: #000;
    border: none;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.dropdown-checkout-button:hover {
    background: #e68a00;
}
