    /* Base del banner */
    #cookie-banner {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background: #f9f9f9;
      border-top: 1px solid #ccc;
      box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
      font-family: sans-serif;
      z-index: 10000;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 1em;
    }

    /* Estados oculto y visible con animación */
    .oculto {
      opacity: 0;
      pointer-events: none;
      transform: translateY(100%);
      transition: all 1s ease;
    }
    .visible {
      opacity: 1;
      pointer-events: all;
      transform: translateY(0);
      transition: all 1s ease;
    }

    /* Contenido */
    #cookie-banner p {
      margin: 0 0 1em;
      text-align: center;
      font-size: 0.9rem;
    }
    #cookie-banner a {
      color: #1e88e5;
      text-decoration: underline;
    }

    /* Botones */
    #cookie-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5em;
      justify-content: center;
    }
    #cookie-buttons button {
      padding: 0.5em 1em;
      border: none;
      border-radius: 4px;
      font-weight: bold;
      cursor: pointer;
      font-size: 0.9rem;
    }
    #accept-btn { background-color: #4CAF50; color: white; }
    #necessary-btn { background-color: #ddd; color: #333; }

    /* Responsive: a partir de 600px */
    @media (min-width: 600px) {
      #cookie-banner {
        flex-direction: row;
        justify-content: space-between;
        padding: 1em 2em;
      }
      #cookie-banner p {
        margin: 0;
        text-align: left;
        flex: 1;
      }
    }
	