/* Ubezpieczenie plugin frontend styles */
.ubezp-calculator { padding: 1rem; border: 1px solid #ddd; border-radius: 8px; }

/* ===== LISTA WGRANYCH PLIKÓW (z usuwaniem) ===== */
.aszk-uploads-list { margin-top: 0.75rem; display: flex; flex-direction: column; gap: 0.5rem; }
.aszk-upload-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.75rem;
  background: #F3F4F6;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  font-size: 0.92rem;
}
.aszk-upload-item__icon { font-size: 1.2rem; flex: 0 0 auto; }
.aszk-upload-item__name { flex: 1 1 auto; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.aszk-upload-item__size { flex: 0 0 auto; color: #6B7280; font-size: 0.85rem; }
.aszk-upload-item__remove {
  flex: 0 0 auto;
  width: 28px; height: 28px;
  border: none;
  border-radius: 50%;
  background: #FEE2E2;
  color: #B91C1C;
  font-size: 0.95rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.aszk-upload-item__remove:hover { background: #FCA5A5; color: #7F1D1D; }
