/* VƯỜN NGOẠI NGỮ v6.15.225 — Teacher student delete action
   Destructive action styling only. */

#view-teacher .student-actions{
  display:flex;
  flex-wrap:wrap;
  gap:7px;
  align-items:center;
}

#view-teacher .student-delete-account-btn{
  min-height:36px;
  padding:8px 11px;
  border:1px solid #e7b8b0;
  border-radius:10px;
  background:#fff7f5;
  color:#a33d32;
  font-weight:850;
  cursor:pointer;
  box-shadow:none;
}

#view-teacher .student-delete-account-btn:hover{
  background:#fff0ed;
  border-color:#d99c92;
}

#view-teacher .student-delete-account-btn[aria-busy="true"],
#view-teacher .student-delete-account-btn:disabled{
  opacity:.58;
  cursor:wait;
}

@media(max-width:700px){
  #view-teacher .student-actions{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  #view-teacher .student-actions>button{
    width:100%;
  }
  #view-teacher .student-delete-account-btn{
    grid-column:1/-1;
  }
}
