/* Global modern growl styling */
.ms-growl {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px 12px 12px;
  border-radius: 10px;
  border: 1px solid rgba(72,180,97,.25);
  background: #e6f4ea;
  color: #145c2e;
  box-shadow: 0 10px 20px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.04);
}
.ms-growl.alert-success { background: #e6f4ea; border-color: rgba(72,180,97,.25); color:#145c2e; }
.ms-growl.alert-danger  { background: #fdebec; border-color: rgba(220,53,69,.25); color:#842029; }
.ms-growl.alert-warning { background: #fff7e6; border-color: rgba(255,193,7,.25); color:#664d03; }
.ms-growl.alert-info    { background: #e7f1ff; border-color: rgba(13,110,253,.25); color:#084298; }

.ms-growl .ms-growl-close {
  background: transparent;
  border: 0;
  font-size: 18px;
  line-height: 1;
  color: inherit;
  position: absolute;
  top: 8px;
  right: 10px;
}
.ms-growl .ms-growl-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: currentColor;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ms-growl.alert-danger  .ms-growl-icon { background:#dc3545; }
.ms-growl.alert-warning .ms-growl-icon { background:#ffc107; color:#222; }
.ms-growl.alert-info    .ms-growl-icon { background:#0d6efd; }
.ms-growl.alert-success .ms-growl-icon { background:#198754; }

.ms-growl .ms-growl-body { display:flex; flex-direction:column; }
.ms-growl .ms-growl-title { font-weight:700; margin-bottom:2px; }
.ms-growl .ms-growl-message { font-size: 13px; }

/* Compact on very small screens */
@media (max-width: 480px) {
  .ms-growl { gap:8px; padding:10px 12px 10px 10px; }
  .ms-growl .ms-growl-icon { width:26px; height:26px; }
  .ms-growl .ms-growl-title { font-size:14px; }
  .ms-growl .ms-growl-message { font-size:12px; }
}
