/* Notifications modal (global) */

.ntf-modal .modal-dialog{
  max-width: 860px;
}
.ntf-modal .modal-content{
  border: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 22px 44px rgba(0,0,0,0.28);
}
.ntf-head{
  padding: 18px 22px 12px;
}
.ntf-title{
  font-weight: 800;
  font-size: 1.15rem;
  color: #111;
  line-height: 1.1;
}
.ntf-sub{
  color: rgba(0,0,0,0.55);
  font-weight: 600;
  font-size: 0.82rem;
  margin-top: 4px;
}
.ntf-top-actions{
  display:flex;
  align-items:center;
  gap: 10px;
}
.ntf-topbtn{
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 0;
  background: rgba(0,0,0,0.08);
  color: rgba(0,0,0,0.70);
  display:grid;
  place-items:center;
}
.ntf-topbtn:hover{ background: rgba(0,0,0,0.12); }

.ntf-divider{
  height: 1px;
  background: rgba(0,0,0,0.10);
}

.ntf-body{
  padding: 14px 22px 22px;
}
.ntf-controls{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.ntf-tabs{
  display:flex;
  align-items:center;
  gap: 10px;
}
.ntf-tab{
  border: 1px solid rgba(0,0,0,0.10);
  background: #fff;
  border-radius: 10px;
  padding: 8px 12px;
  font-weight: 800;
  font-size: 0.82rem;
  color: rgba(0,0,0,0.65);
}
.ntf-tab.active{
  background: #433C1C;
  border-color: #433C1C;
  box-shadow: none;
  color: #ffffff;
}
.ntf-mark{
  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(0,0,0,0.04);
  border-radius: 10px;
  padding: 9px 14px;
  font-weight: 800;
  font-size: 0.82rem;
  color: rgba(0,0,0,0.55);
  display:inline-flex;
  align-items:center;
  gap: 8px;
}

.ntf-sec{
  font-weight: 900;
  font-size: 1rem;
  color:#111;
  margin: 14px 0 10px;
}
.ntf-list{
  display:flex;
  flex-direction: column;
  gap: 12px;
}
.ntf-item{
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  background: #fff;
  padding: 14px 14px;
  display:flex;
  align-items:flex-start;
  justify-content: space-between;
  gap: 14px;
}
.ntf-left{
  display:flex;
  align-items:flex-start;
  gap: 12px;
  min-width: 0;
}
.ntf-bar{
  width: 4px;
  height: 44px;
  border-radius: 999px;
  background: linear-gradient(180deg, #FFCA00 0%, #FF9400 100%);
  flex: 0 0 auto;
  margin-top: 2px;
}
.ntf-item.muted .ntf-bar{ background: rgba(0,0,0,0.16); }
.ntf-name{
  font-weight: 900;
  font-size: 0.92rem;
  color:#111;
}
.ntf-desc{
  color: rgba(0,0,0,0.62);
  font-weight: 600;
  font-size: 0.82rem;
  margin-top: 2px;
}
.ntf-desc a{
  color: #FF9400;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 800;
}
.ntf-time{
  color: rgba(0,0,0,0.45);
  font-weight: 700;
  font-size: 0.75rem;
  white-space: nowrap;
  margin-top: 2px;
}

@media (max-width: 575.98px){
  .ntf-modal .modal-dialog{ margin: 12px; }
  .ntf-head{ padding: 16px 16px 10px; }
  .ntf-body{ padding: 12px 16px 16px; }
  .ntf-item{ flex-direction: column; }
  .ntf-time{ margin-left: auto; }
}

