/* Podstawowe style dla mobile bannera */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2c3e50;
  color: #fff;
  padding: 10px 15px;
  font-size: 13px;
  line-height: 1.4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10000;
  border-radius: 10px 10px 0 0;
}

.cookie-banner p {
  margin: 0;
  flex: 1;
  padding-right: 10px;
}

.cookie-banner button {
  background: #27ae60;
  border: none;
  color: white;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
}

.cookie-banner button:hover {
  background: #219150;
}

/* Tylko na ekranach < 600px */
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    text-align: center;
  }

  .cookie-banner p {
    padding: 0 0 8px 0;
  }
}
