.settle-summary span {
    margin-right: 10px;
}
.visual_tit {
    padding: 20px 0;
}
/* 레이아웃: 좌측 테이블 + 우측 패널 */
.orders-log-layout {
  display: flex; 
  gap: 20px; 
  align-items: flex-start;
}
.orders-log-wrap{ 
    width: 60%;
    flex: 1 1 auto; 
    min-width:0; 
}
#accountBody .cell-center input {
    vertical-align: middle;
}
.account-panel{ 
    width: 40%;
}
.card{
    background: white;
    border-radius: 14px;
    box-shadow:0 8px 30px rgba(2,6,23,.06)
}
.card .card-head{
    padding: 20px 30px;
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    gap: 8px;
    height: 75px;
}
.card .card-head .title{
    font-weight: 700;
    font-size: 18px;
}
.card .form {
    padding: 20px;
    height: auto;
}
/* 패널 내부 */
.account-panel .card-body{ 
    padding: 20px 20px 40px 20px;
 }
.account-hero {
  margin-bottom: 14px;
  padding-bottom: 12px;
}
.account-hero .acc-line1{ 
    font-size: 20px; 
    font-weight: 800; 
    display: flex; 
    gap: 8px; 
    align-items: center; 
    justify-content: center;
}
.account-hero .acc-line2{ 
    color: var(--muted); 
    display: flex; 
    gap: 8px; 
    align-items: center; 
    justify-content: center;
}
.account-hero .dot{ opacity:.6 }

.stats-row{
  display: flex; 
  gap: 20px; 
  margin: 12px 0 16px;
  padding: 0 40px;
}
.stat{
    flex: 1; 
    width: 100%;
    height: 100%;
    padding: 20px;
    background-color: var(--background-light);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.stat .label{ 
    color: var(--muted); 
    font-size: 14px;
}
.stat strong{ 
    font-size: 4rem;
    font-weight: 700;
 }

.mini-table-wrap { 
    border-top: 2px solid #1f2937;
    border-bottom: 2px solid #1f2937;
    overflow: hidden;
    background:#fff; 
}
.mini-table { 
    width:100%; 
    border-collapse: collapse; 
}
.mini-table thead {
    border-bottom: 2px solid #1f2937;
}
.mini-table th, 
.mini-table td {
  border-top: 1px solid var(--line);
  padding: 8px 10px; 
  font-size: 14px; 
  background:#fff;
  text-align: center;
}
.mini-table th { 
    background:#f3f4f6; 
    text-align: center; 
}
.mini-table .muted{ 
    color: var(--muted);
    padding: 100px 0;
 }
.mini-table .center{ text-align:center; }

/* 드래그 핸들 (네 기존 스타일 이용) */
.drag-handle {
  width: 100%; 
  height: 32px; 
  display: flex; 
  align-items: center; 
  justify-content: center;
  cursor: grab; 
  color:#9ca3af; 
  user-select: none;
}
.drag-handle svg { width: 18px; height:18px; }

/* 반응형 보조 */
@media (max-width: 1200px){
  .orders-log-layout{ flex-direction: column; }
  .account-panel{ width:100%; flex: 1 1 auto; }
}

/* 표 */
input[type="text"],
input[type="checkbox"] {
    text-align: center;
    vertical-align: middle;
}
.current-order,
.first-order {
    text-align: center;
    font-size: 14px;
}
textarea[name="paidcheck"] {
    width: 100%;
    height: auto;
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 6px 10px;
    outline: none;
    background: #fff;
    font-size: 14px;
    font-weight: 500;
}

/* ====== section 03 ======*/
.section03 {
    display: flex;
    gap: 20px;
    margin-top: 0;
    width: 600px;
    padding: 0 20px;
    margin: 0 auto;
}
.section03 .title {
    font-size: 20px;
    font-weight: 700;
    color: var(--ink);
}
.section03 .sub_title {
    font-size: 16px;
    font-weight: 500;
    color: #767676;
    margin-top: 8px;
}
.excel-file {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 0;
    margin-bottom: 60px;
}
.date_group {
    display: flex;
    gap: 10px;
}
.date_input_wrap {
    flex: 1;
    padding: 20px 10px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    text-align: center;
}
.date_input_wrap input[type="date"] {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    font-size: 16px;
    cursor: pointer;
    text-align: center;
}
.date_input_wrap input[type="date"]::-webkit-calendar-picker-indicator {
     display: none;
}
.tip {
    align-items: center;
    vertical-align: middle;
    display: flex;
    justify-content: center;
    font-size: 30px;
}
.excel_download_btn {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary-green);
    border-radius: 10px;
    padding: 20px 10px;
    color: white;
    font-size: 20px;
    transition: all 0.3s;
    cursor: pointer;
    font-weight: 500;
}
.excel_download_btn:hover {
    background-color: var(--primary-brown);
}
.icon_excel {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  background: currentColor;
  -webkit-mask: url("../public/icon/excel.svg") center/contain no-repeat;
          mask: url("../public/icon/excel.svg") center/contain no-repeat;
}

/* ====== section 03 end ====== */