#gdpr-cookie-consent {
          position: fixed;
		  top: 10%;
          bottom: 20px;
          left: 50%;
          transform: translateX(-50%);
          background: #fff;
          padding: 20px;
		  min-height: 150px;
		  max-height: 150px;
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.8);
          border-radius: 20px;
          display: none;
          z-index: 1000;
          opacity: 0;
          transition: opacity 0.3s ease, transform 0.3s ease;
          text-align: center;
		  width: 500px;
		  max-width: 90%;
      }
	/* Közepes kijelzők: Kicsinyítés */
		@media (max-width: 1024px) {
			#gdpr-cookie-consent {
				transform: translateX(-50%) scale(0.8);
			}
		}

		/* Mobil kijelzők: További kicsinyítés */
		@media (max-width: 768px) {
			#gdpr-cookie-consent {
				transform: translateX(-50%) scale(0.7);
			}
		}

		/* Nagyon kis kijelzők: Még kisebb méret */
		@media (max-width: 480px) {
			#gdpr-cookie-consent {
				transform: translateX(-50%) scale(0.6);
			}
		}
      #gdpr-cookie-consent.show, #cookie-modal.show {
          display: block;
          opacity: 1;
      }
	  .p {
		  text-align: center;
	  }
      .gdpr-cookie-buttons {
          margin-top: 10px;
          display: flex;
          flex-direction: row;
          justify-content: center;
          align-items: center;
          gap: 10px;
      }
      .gdpr-cookie-buttons button {
          padding: 10px;
          border: none;
          border-radius: 5px;
          cursor: pointer;
          font-size: 14px;
          transition: transform 0.2s, box-shadow 0.2s;
          width: 200px;
      }
      .gdpr-accept {
          background-color: #4CAF50;
          color: white;
          box-shadow: 0 4px #388E3C;
      }
      .gdpr-accept:hover {
          transform: translateY(-2px);
          box-shadow: 0 6px #388E3C;
      }
      .gdpr-settings {
          background-color: #f1c40f;
          color: black;
          box-shadow: 0 4px #d4a807;
      }
      .gdpr-settings:hover {
          transform: translateY(-2px);
          box-shadow: 0 6px #d4a807;
      }
      .gdpr-necessary { 
          background: gray;
          color: white;
          box-shadow: 0 4px #404040;
      }
      .gdpr-necessary:hover { 
          transform: translateY(-2px);
          box-shadow: 0 6px #202020;
      }
      .gdpr-modal-content h2 {
          margin-bottom: 5px;
      }
      .gdpr-modal-content p {
          margin-bottom: 15px;
      }
      .gdpr-toggle {
			display: flex;
			justify-content: space-between;
			align-items: center;
			margin-bottom: 2px;
			font-size: 18px;
			color: #333;
			text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.15);
			font-weight: bold;
		}
      .gdpr-switch {
          position: relative;
          display: inline-block;
          width: 60px;
          height: 24px;
      }
      .gdpr-switch input {
          opacity: 0;
          width: 0;
          height: 0;
      }
      .gdpr-slider {
          position: absolute;
          cursor: pointer;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background-color: #ccc;
          transition: 0.4s;
          border-radius: 50px;
          box-shadow: 0 4px rgba(0, 0, 0, 0.2); /* 3D hatás */
      }
      .gdpr-slider:before {
          position: absolute;
          content: "";
          height: 18px;
          width: 18px;
          border-radius: 40px;
          left: 4px;
          bottom: 4px;
          background-color: white;
          transition: 0.4s;
          box-shadow: 0 4px rgba(0, 0, 0, 0.2); /* 3D hatás */
      }
      .gdpr-switch input:checked + .gdpr-slider {
          background-color: #4CAF50;
      }
      .gdpr-switch input:checked + .gdpr-slider:before {
          transform: translateX(26px);
      }
      .gdpr-modal {
          display: none;
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: rgba(0, 0, 0, 0.5);
          justify-content: center;
          align-items: center;
          z-index: 10000;
      }
      .gdpr-modal-content {
          background: #fff;
          padding: 20px;
          border-radius: 8px;
          width: 400px;
          text-align: center;
      }
      .gdpr-cookie-buttons {
          margin-top: 10px;
          display: flex;
          flex-direction: row;
          justify-content: center;
          align-items: center;
          gap: 10px;
      }
      .gdpr-cookie-buttons button {
          padding: 10px;
          border: none;
          border-radius: 5px;
          cursor: pointer;
          font-size: 14px;
          transition: transform 0.2s, box-shadow 0.2s;
          width: 200px;
      }
      .gdpr-close {
          background: red;
          color: white;
          box-shadow: 0 4px red;
      }
      .gdpr-close:hover {
          transform: translateY(-2px);
          box-shadow: 0 6px darkred;
      }
      .gdpr-additional-buttons {
          margin-top: 20px;
          display: flex;
          flex-direction: row;
          gap: 10px;
          justify-content: center;
          align-items: center;
      }
      .gdpr-additional-buttons button {
          padding: 5px 10px;
          border: none;
          border-radius: 5px;
          cursor: pointer;
          font-size: 8px;
          width: 120px;
          transition: transform 0.2s, box-shadow 0.2s;
          background: #007bff;
          color: white;
      }
      .gdpr-additional-buttons button:hover {
          transform: translateY(-2px);
          box-shadow: 0 4px #0056b3;
      }
      #gdpr-settings-icon {
			display: flex;
			align-items: center;
			cursor: pointer;
			position: fixed;
			bottom: 10px;
			left: 20px;
			z-index: 9999;
			background: rgba(255, 255, 255, 0.2);
			padding: 5px 10px;
			border-radius: 5px;
		}
		#gdpr-settings-button {
			display: flex;
			align-items: center;
			justify-content: center;
			position: fixed;
			bottom: 20px;
			left: 20px;
			z-index: 9999;
			background: rgba(255, 255, 255, 0.2);
			padding: 8px 12px;
			border-radius: 8px;
			border: none;
			cursor: pointer;
			transition: background 0.3s ease;
		}
		#gdpr-settings-button img {
			width: 18px;
			height: 18px;
			margin-right: 5px;
		}
		#gdpr-settings-button span {
			font-size: 14px;
			color: black;
			font-weight: bold;
		}
		#gdpr-settings-button:hover {
			background: rgba(255, 255, 255, 0.9);
			box-shadow: 0 4px rgba(0, 0, 0, 0.2);
		}
		#gdpr-success-message {
			display: none;
			position: fixed;
			bottom: 20px;
			left: 50%;
			transform: translateX(-50%);
			background: #28a745;
			color: white;
			padding: 10px;
			border-radius: 5px;
			z-index: 10001;
			box-shadow: 0 4px rgba(0, 0, 0, 0.2);
		}
		#gear-icon {
		  width: 48px;
		  height: 48px;
		  animation: rotate 3s linear infinite; /* Forgás animáció */
		}

		@keyframes rotate {
		  0% { transform: rotate(0deg); }
		  100% { transform: rotate(360deg); }
		}

