.arsa-sheet-item{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:16px 0;
  background:none;
  border:0;
  border-top:1px solid #F0F0F0;
  cursor:pointer;
  color:#111;
  font:inherit;
  text-align:left;
}
.arsa-sheet-item-left{
  display:flex;
  align-items:center;
  gap:14px;
}
.arsa-sheet-item-icon,
.arsa-sheet-item-right{
  width:22px;
  height:22px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.arsa-sheet-item-icon svg,
.arsa-sheet-item-right svg{
  width:22px;
  height:22px;
}
.arsa-sheet-item-title{
  font-size:15px;
  font-weight:600;
}

.arsa-head{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:16px;
}
.arsa-back-btn{
  width:42px;
  height:42px;
  border:0;
  border-radius:14px;
  background:#F3F2F7;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  flex:0 0 42px;
}
.arsa-back-btn svg{
  width:20px;
  height:20px;
}
.arsa-head-title{
  flex:1;
  text-align:center;
  font-size:18px;
  font-weight:700;
  color:#111;
  padding-right:52px;
}

.arsa-form{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.arsa-field label{
  display:block;
  margin-bottom:6px;
  font-size:14px;
  font-weight:600;
  color:#111;
}
.arsa-field input,
.arsa-field select{
  width:100%;
  height:50px;
  border:1px solid #E5E7EB;
  border-radius:16px;
  background:#fff;
  padding:0 14px;
  font:inherit;
  color:#111;
  outline:none;
}
.arsa-parsel-row{
  display:grid;
  grid-template-columns:1fr 1fr auto;
  gap:10px;
  align-items:end;
  padding:12px;
  border:1px solid #ECECEC;
  border-radius:18px;
  background:#FAFAFA;
  margin-bottom:10px;
}
.arsa-remove-btn{
  width:48px;
  height:50px;
  border:0;
  border-radius:14px;
  background:#F3F2F7;
  font-size:22px;
  cursor:pointer;
}
.arsa-add-btn{
  width:100%;
  height:46px;
  border:1px dashed #CFCFCF;
  border-radius:16px;
  background:#fff;
  font:inherit;
  font-weight:600;
  cursor:pointer;
}
.arsa-actions{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin-top:4px;
}
.arsa-btn{
  height:48px;
  border:0;
  border-radius:16px;
  font:inherit;
  font-weight:700;
  cursor:pointer;
}
.arsa-btn.primary{
  background:#34297A;
  color:#fff;
}
.arsa-btn.secondary{
  background:#F3F2F7;
  color:#111;
}
.arsa-status{
  min-height:20px;
  font-size:13px;
  color:#4B5563;
}
.arsa-btn[disabled]{
  opacity:.65;
  cursor:not-allowed;
}