/* Base styles from asset mapper */

.cookie-consent-banner {
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: rgba(33, 37, 41, 0.95);
      color: white;
      padding: 1rem 0;
      z-index: 1050;
      transform: translateY(100%);
      transition: transform 0.3s ease-in-out;
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    }
    .cookie-consent-banner.show {
      transform: translateY(0);
    }
    