@charset "UTF-8";
/* YOUR CUSTOM CSS */
.round_logo-container img {
    transition: transform 0.3s ease-in-out;
}

.round_logo-container img:hover {
    transform: scale(1.2);
}

@media (max-width: 600px) {
    .round_logo-container img {
		display: none;
    }
}

.price-column {
    text-align: right; /* Align text to the right */
    width: 100px; /* Set a fixed width for consistency */
    padding-right: 10px; /* Add padding for better spacing */
}


