
/* V412 - cập nhật thuế suất TNDN rõ ràng theo kỳ */
.v412-cit-rate-panel{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin:14px 0 12px;
  padding:14px;
  border:1px solid var(--border);
  border-radius:10px;
  background:var(--card);
}
.v412-cit-rate-copy{
  min-width:0;
}
.v412-cit-rate-copy strong{
  display:block;
  font-size:13.5px;
  line-height:1.35;
  color:var(--foreground);
}
.v412-cit-rate-copy span{
  display:block;
  margin-top:4px;
  font-size:10.5px;
  line-height:1.45;
  color:var(--muted-foreground);
}
.v412-cit-rate-control{
  display:flex;
  align-items:center;
  gap:6px;
  flex:none;
}
.v412-cit-rate-control input{
  width:92px;
  height:40px;
  border:1px solid var(--border);
  border-radius:8px;
  background:var(--background);
  color:var(--foreground);
  padding:0 10px;
  text-align:right;
  font-size:15px;
  font-weight:700;
}
.v412-cit-rate-control>span{
  font-size:14px;
  font-weight:700;
  color:var(--foreground);
}
.v412-cit-rate-control button{
  height:40px;
  border:1px solid var(--foreground);
  border-radius:8px;
  background:var(--foreground);
  color:var(--background);
  padding:0 13px;
  font-size:12px;
  font-weight:600;
}
.v412-cit-adjustments{
  grid-template-columns:repeat(3,minmax(0,1fr)) auto!important;
}
@media(max-width:760px){
  .v412-cit-rate-panel{
    align-items:stretch;
    flex-direction:column;
    gap:10px;
  }
  .v412-cit-rate-control{
    width:100%;
  }
  .v412-cit-rate-control input{
    flex:1;
    width:auto;
    min-width:0;
    font-size:16px;
  }
  .v412-cit-rate-control button{
    min-width:104px;
  }
  .v412-cit-adjustments{
    grid-template-columns:1fr!important;
  }
}
