/*
* FooGallery Custom CSS
* This file is created by adding custom CSS on FooGallery Settings page in wp-admin
* Created : 31 Mar 2024, 7:43 pm
*/

/* Styles for all devices (general styles) */
button.fg-panel-button.fg-panel-button-cart {
  color: #ffffff; /* White text color */
  background-color: #0037FF; /* Blue background color */
}

/* Styles applied only on screens less than 768px wide (mobile) */
@media screen and (max-width: 768px) {
  button.fg-panel-button.fg-panel-button-cart {
    padding-right: 100%; /* Mobile specific padding */
    padding-top: 0px;
    padding-left: 0px;
    padding-bottom: 0px;
  }
}
