 /* Estilos barra inferior */
    #cookieBanner {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background-color: white;
      padding: 20px;
      box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
      display: none;
      z-index: 9999;
    }

    .cookiBannerLinks {
        padding : 10px 0px;
        font-size: 1rem
    }

    #cookieBanner p {
      margin: 0 0 10px 0;
      font-size: 14px;
    }

    .cookie-btn {
      padding: 10px 15px;
      margin-right: 10px;
      border: none;
      cursor: pointer;
      font-size: 14px;
      border-radius: 5px;
    }

    #acceptBtn {
      background-color: black;
      color: white;
    }

    #denyBtn, #prefsBtn {
      background-color: #ccc;
      color: black;
    }

    /* Modal de preferencias */
    #cookieModal {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background-color: rgba(0,0,0,0.6);
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 10000;
    }

    #cookieModalContent {
      background-color: white;
      padding: 30px;
      border-radius: 8px;
      width: 90%;
      max-width: 600px;
      max-height: 80%;
      overflow-y: auto;
    }

    .cookie-category {
      margin-bottom: 15px;
      border-bottom: 1px solid #eee;
      padding-bottom: 10px;
    }

    .cookie-category label {
      font-weight: bold;
    }

    .cookie-desc {
      font-size: 13px;
      color: #555;
      margin: 4px 0;
    }

    .modal-buttons {
      text-align: right;
      margin-top: 20px;
    }

    .cookie-switch {
      float: right;
      transform: scale(1.2);
    }

    .disabled-switch {
      opacity: 0.6;
      pointer-events: none;
    }

    @media (max-width: 600px) {
  #cookieBanner div {
    flex-direction: column;
    text-align: left;
  }

  #cookieBanner button {
    margin-top: 10px;
  }
}