/* Popup styles */
    #cookie-popup {
      position: fixed;
      bottom: 20px;
      left: -100%;
      width: 90%;
      max-width: 310px;
      background: #2d2d2d;
      color: #fff;
      padding: 20px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.3);
      font-family: Arial, sans-serif;
      border-radius: 8px;
      z-index: 9999;
      opacity: 0;
      transition: all 0.5s ease;
    }

    #cookie-popup.show {
      left: 20px;
      opacity: 1;
    }

    .cookie-text {
      font-size: 14px;
      line-height: 1.5;
      margin-bottom: 15px;
    }

    .cookie-buttons {
      display: flex;
	  justify-content: flex-end;
      gap: 10px;
    }

    .cookie-buttons button {
      border: none;
      padding: 10px 15px;
      cursor: pointer;
      border-radius: 4px;
      font-size: 14px;
    }

    .accept-btn {
      background: #d32f2f;
      color: #fff;
    }

    .prefs-btn {
      background: transparent;
      border: 1px solid #fff;
      color: #fff;
    }

    .close-btn {
      position: absolute;
      top: 10px;
      right: 15px;
      font-size: 18px;
      cursor: pointer;
      color: #fff;
    }