#cookie-modal {
      position: fixed;
      bottom: 20px;
      right: 20px;
      transform: translateX(-5%);
	  transform: translateY(-5%);
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.2);
      max-width: 500px;
      width: 90%;
      padding: 24px;
      z-index: 9999;
      font-family: sans-serif;
      display: none;
    }

    #cookie-modal h2 {
      margin-top: 0;
      font-size: 18px;
    }

    #cookie-modal p {
      font-size: 14px;
      margin: 12px 0;
      color: #333;
    }

    #cookie-buttons {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      margin-top: 16px;
    }

    #cookie-buttons button {
      padding: 10px 16px;
      font-size: 14px;
      border-radius: 6px;
      border: 1px solid #ccc;
      cursor: pointer;
      margin: 5px 5px;
      flex: 1 1 30%;
    }

    #cookie-accept {
      background-color: #005bbb;
      color: white;
      border: none;
    }

    #cookie-deny {
      background-color: #f0f0f0;
    }

    #cookie-preferences {
      background-color: #f0f0f0;
    }

    #cookie-links {
      font-size: 12px;
      margin-top: 12px;
      text-align: center;
    }

    #cookie-links a {
      margin: 0 8px;
      color: #555;
      text-decoration: underline;
    }

    #close-cookie-modal {
      position: absolute;
      top: 12px;
      right: 16px;
      cursor: pointer;
      font-weight: bold;
      font-size: 18px;
      color: #aaa;
    }