/*
Theme Name: Betheme Child
Theme URI: https://themes.muffingroup.com/betheme
Author: Muffin group
Author URI: https://muffingroup.com
Description: Child Theme for Betheme
Template: betheme
Version: 1.6.2
*/



/* Arizona Sales Ban Warning Bar Styles */
#arizona-warning-bar {
  background-color: #f5f5f5;
  color: #333;
  padding: 15px 10px; /* Adjust padding for smaller screens */
  text-align: center;
  border-top: 2px solid #dcdcdc;
  font-family: Arial, sans-serif;
  font-size: 14px;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-sizing: border-box; /* Ensure padding is included in the total width */
}

/* Close Button Styles */
#close-warning-bar {
  background: none;
  border: none;
  color: #333;
  font-size: 18px;
  font-weight: bold;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  #arizona-warning-bar {
    font-size: 12px; /* Smaller text on smaller screens */
    padding: 15px 5px; /* Adjust padding for smaller screens */
  }

  #close-warning-bar {
    font-size: 16px; /* Smaller close button on smaller screens */
    top: 8px;
    right: 8px;
  }
}

@media (max-width: 480px) {
  #arizona-warning-bar {
    font-size: 11px; /* Even smaller text on very small screens */
    padding: 10px 5px; /* Adjust padding further for very small screens */
  }

  #close-warning-bar {
    font-size: 14px; /* Further reduce close button size */
    top: 5px;
    right: 5px;
  }
}
