@charset "utf-8";
/* CSS Document */

/* CookieAbfrage Jarvis */


.cookie-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.cookie-container {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    max-width: 400px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.cookie-heading {
    margin-top: 0;
    font-size: 1.5rem;
    color: #333;
}

.cookie-text {
    font-size: 1rem;
    color: #555;
}

.cookie-buttons, .cookie-form {
    margin-top: 20px;
}

.cookie-btn {
    padding: 10px 20px;
    margin: 5px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cookie-btn-accept {
    background-color: #4CAF50;
    color: white;
}

.cookie-btn-reject {
    background-color: #f44336;
    color: white;
}

.cookie-btn-customize {
    background-color: #008CBA;
    color: white;
}

/* onMouseOver-Effekte */
.cookie-btn-accept:hover {
    background-color: #45a049;
}

.cookie-btn-reject:hover {
    background-color: #e53935;
}

.cookie-btn-customize:hover {
    background-color: #0077a7;
}

.cookie-link {
    display: block;
    margin-top: 15px;
    color: #555;
    text-decoration: none;
}

.cookie-link:hover {
    text-decoration: underline;
    color: #000;
}

.cookie-label {
    display: block;
    font-size: 0.9rem;
    color: #444;
    margin-top: 10px;
}


/* ==================================================
   Regio360 – Cookie Banner Mobile deutlich kleiner
   ================================================== */
@media (max-width: 768px) {

  .cookie-consent,
  .cookie-banner,
  #cookie {
    font-size: 0.75em;      /* deutlich kleiner */
    padding: 10px 12px;
    line-height: 1.3;
  }

  /* Buttons etwas kompakter */
  .cookie-consent button,
  .cookie-banner button,
  #cookie button {
    font-size: 0.8em;
    padding: 6px 10px;
  }

}



