body { font-family:system-ui; background:#fff; }

#loader {
  position:fixed;
  width:100%;
  height:100%;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:9999;
}

.header {
  padding:10px 15px;
  border-bottom:1px solid #eee;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.brand {
  display:flex;
  align-items:center;
  gap:10px;
}

.brand-name {
  font-weight:600;
  color:#209698;
}

.center-title {
  text-align:center;
  font-weight:600;
  margin:10px 0;
}

.card {
  border-radius:14px;
}

.btn-primary {
  background:#209698;
  border:none;
}

.row-block {
  border:1px solid #eee;
  border-radius:10px;
  padding:10px;
  margin-bottom:10px;
}

.remove-row {
  text-align:right;
}

.add-btn {
  width:100%;
  margin-top:5px;
}

.email-suggestions{
  position:absolute;
  top:100%;
  left:0;
  right:0;
  background:#fff;
  border:1px solid #ddd;
  border-radius:8px;
  z-index:9999;
  max-height:220px;
  overflow-y:auto;
  display:none;
  box-shadow:0 4px 12px rgba(0,0,0,0.08);
}

.suggestion-item{
  padding:12px;
  cursor:pointer;
  border-bottom:1px solid #f1f1f1;
  font-size:14px;
  line-height:1.4;
  word-break:break-word;
}

.suggestion-item:last-child{
  border-bottom:none;
}

.suggestion-item:hover,
.suggestion-item:active{
  background:#f5f5f5;
}

@media(max-width:576px){

  .email-suggestions{
    max-height:180px;
  }

  .suggestion-item{
    padding:14px 12px;
    font-size:15px;
  }

}