/* Komunikaty (informacje / alerty dla użytkownika) */
.komunikat {
  margin: 20px 0;
  padding: 12px 18px 12px 46px;
  border: 1px solid #b3d8ff;
  background: linear-gradient(180deg,#eef7ff 0%, #e2f1ff 100%);
  color: #0b496f;
  border-radius: 8px;
  font-weight: 500;
  line-height: 1.4;
  position: relative;
  box-shadow: 0 2px 4px rgba(0,0,0,.06);
  overflow-wrap: anywhere;
}
.komunikat:before {
  content: 'ℹ';
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  line-height: 1;
  color: #0a6dad;
  font-weight: 600;
}
.komunikat--success {
  border-color: #b4e2c5;
  background: linear-gradient(180deg,#ecfff4 0%, #e1faed 100%);
  color: #1b5e38;
}
.komunikat--success:before { content: '✔'; color:#1e7c49; }
.komunikat--error {
  border-color: #f4c7c7;
  background: linear-gradient(180deg,#fff2f2 0%, #ffe6e6 100%);
  color: #7d1f1f;
}
.komunikat--error:before { content: '✖'; color:#b62525; }
.komunikat--warn {
  border-color: #f3dfb2;
  background: linear-gradient(180deg,#fff9e9 0%, #fff1cf 100%);
  color: #6b4b00;
}
.komunikat--warn:before { content: '⚠'; color:#b57900; }
.komunikat a { color:#0a6dad; font-weight:600; }
.komunikat a:hover { text-decoration: underline; }

/* Kontener na wiele komunikatów */
.flash-wrapper { max-width: 1000px; margin: 0 auto; }