/**
 * pages/price.css — 시세 조회 페이지 전용 스타일
 * 대시보드 디자인 시스템 (variables.css, card.css) 기반
 */

/* ── 공통 헤더(사과Q) 숨김 — price 페이지는 mypage-page-header 사용 ── */
header {
    display: none !important;
}

/* ── 페이지 헤더 (mypage-page-header 공용 구조 재사용) ── */
.mypage-page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px 14px;
    background: var(--white, #fff);
    border-bottom: 1px solid #f0f1f5;
    position: sticky;
    top: 0;
    z-index: 100;
    height: 70px;
}

.mypage-page-header .page-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--brown-dark);
    margin: 0;
}

.mypage-page-header .back-link {
    color: var(--brown-dark);
    font-size: 20px;
    text-decoration: none;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-btn-sub {
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    color: var(--brown-dark);
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

/* ── price 페이지: info-bar (좌측 갱신 일자만 표시) ── */
.weather-info-bar {
    position: sticky;
    top: 70px;
    z-index: 99;
    background: #ffffff;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 8px 24px;
    font-size: 15px;
    color: #888;
    font-weight: 500;
    border-bottom: 1px solid #f0f1f5;
}

.date-selector-container {
    transition: opacity 0.2s;
    user-select: none;
    display: flex;
    align-items: center;
    gap: 4px;
}

.date-selector-container:hover {
    opacity: 0.7;
}

.date-selector-container .date-label {
    font-size: 14px;
    font-weight: 500;
    color: #888;
}

/* ── 카드 헤더 내 품종 선택 드롭다운 (텍스트형) ──── */
.price-corp-select {
    border: none;
    background: transparent;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font-family);
    color: #4e342e;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    padding-right: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='6'%3E%3Cpath d='M1 1l3.5 3.5L8 1' stroke='%234e342e' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 2px center;
    outline: none;
    text-align: right;
    text-align-last: right;
}

/* ── 카드 헤더 Q 브랜드 간격 (card.css의 i { margin-right:10px }와 통일) ── */
.header-title-group .q-brand {
    margin-right: 6px;
}

/* ── 시세 분석 섹션 (Accordion / Smart Analysis Style) ── */
.price-analysis-container {
    position: relative;
    padding: 0 0 4px;
}

.price-analysis-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    transition: all 0.3s ease;
}

/* 접힌 상태: 선택된 버튼만 상단에 표시 */
.price-analysis-container.is-collapsed {
    margin-bottom: 20px;
}

.price-analysis-container.is-collapsed .price-analysis-grid {
    grid-template-columns: 1fr;
    margin-bottom: 10px;
}

.price-analysis-container.is-collapsed .analysis-mini-card:not(.active) {
    display: none;
}

.price-analysis-container.is-collapsed .analysis-mini-card.active {
    border: 2px solid var(--brown);
    box-shadow: 0 4px 12px rgba(87, 69, 65, 0.1);
}

/* 분석 미니 카드 (Smart Style) */
.analysis-mini-card {
    background: #ffffff;
    padding: 14px 12px;
    border-radius: 12px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    /* 중앙 정렬로 변경 */
    gap: 8px;
    border: 1px solid #f1f3f5;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
    cursor: pointer;
}

.analysis-mini-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border-color: #dee2e6;
}

/* ── 공판장 요약 섹션 (1행 4열) ─────────────────── */
.market-summary-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-top: 12px;
}

.market-summary-item {
    background: #ffffff;
    border: 1px solid #f1f3f5;
    border-radius: 12px;
    padding: 12px 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    transition: all 0.2s;
    cursor: pointer;
}

.market-summary-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    border-color: #dee2e6;
}

.market-summary-label {
    font-size: 15px;
    color: #999;
    font-weight: 500;
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}

.market-summary-value {
    font-size: 17px;
    font-weight: 800;
    color: #333;
}

.market-summary-value.qty {
    color: var(--brown);
}

.analysis-mini-card .mini-card-title {
    font-size: 16px;
    color: #333;
    font-weight: 700;
}

/* 상세 분석 영역 */
.price-analysis-detail {
    background: #fff;
    border-radius: 16px;
    padding: 10px 0 20px;
    animation: fadeInSlide 0.4s ease;
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.price-analysis-detail .detail-notice {
    font-size: 15px;
    color: #999;
    background: #f8f9fa;
    padding: 10px 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* ── 요약 카드: 헤더 구분선·여백 제거 ── */
.price-summary-card .card-header {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 10px;
}

/* ── 요약 카드: 트리밍 드랍다운 오른쪽 정렬 ── */
#ns-trim-selector {
    text-align: right;
    text-align-last: right;
}

/* ── 차트 컨테이너 ─────────────────────────────── */
.price-chart-area {
    margin-left: -20px;
    margin-right: -20px;
    width: calc(100% + 40px);
    min-height: 320px;
}

/* ── 일별 거래가 추이: 왼쪽 Y축 항상 표시 (범례 토글 시 숨김 방지) ── */
#daily-avg-chart .apexcharts-yaxis[rel="0"] {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.price-chart-area--sm {
    margin-left: -20px;
    margin-right: -20px;
    width: calc(100% + 40px);
    min-height: 320px;
}

/* ── 카드 간 간격 ──────────────────────────────── */
main>.card+.card {
    margin-top: 8px;
}

/* ── Q 시세 알림창 — 카드와 동일한 좌우 여백 보정 ── */
#corp-fixed-advice {
    margin: 0 20px 8px;
}

/* ── 시세 요약 통계 기준 안내문 ── */
.summary-notice-text {
    margin: 10px 0 16px 0;
    font-size: 15px;
    color: #888;
    line-height: 1.4;
    word-break: keep-all;
}

/* ── 일별 거래가 추이: 단위 표기 (만단위 / 백단위,kg) ── */
#daily-avg-chart .apexcharts-title-text,
#daily-avg-chart .apexcharts-subtitle-text {
    font-size: 13px !important;
    font-weight: 400 !important;
    fill: #aaa !important;
    font-family: var(--font-family) !important;
    transform: translateY(-9px);
}

/* ── 일별 거래가 추이: 범례 ────────────────────── */
#daily-avg-chart .apexcharts-legend-text {
    font-size: 15px !important;
    font-family: var(--font-family) !important;
}

/* ── 일별 거래가 추이: 축 레이블 ───────────────── */
#daily-avg-chart .apexcharts-xaxis text,
#daily-avg-chart .apexcharts-yaxis text {
    font-size: 13px !important;
    font-family: var(--font-family) !important;
}

/* ── 등급별 평균가: 양옆 패딩 (full-bleed 해제) ── */
#grade-bar-chart {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
}

/* ── 등급별 평균가: 축 레이블 ───────────────────── */
#grade-bar-chart .apexcharts-xaxis text,
#grade-bar-chart .apexcharts-yaxis text {
    font-size: 15px !important;
    font-family: var(--font-family) !important;
}

/* ── 등급별 평균가: 단위 표기 (단위: 만원) ──────── */
#grade-bar-chart .apexcharts-subtitle-text {
    font-size: 15px !important;
    fill: #999 !important;
    font-family: var(--font-family) !important;
}

/* ── 품종별 거래 비중: 범례 ─────────────────────── */
#variety-pie-chart .apexcharts-legend-series {
    margin-bottom: 8px !important;
}

#variety-pie-chart .apexcharts-legend-text {
    font-size: 15px !important;
    font-family: var(--font-family) !important;
    color: #444 !important;
}

#variety-pie-chart .apexcharts-legend-marker {
    width: 8px !important;
    height: 8px !important;
    border-radius: 50% !important;
}

#variety-pie-chart .apexcharts-datalabels text,
#modal-variety-pie-chart .apexcharts-datalabels text {
    font-size: 15px !important;
    font-weight: 700 !important;
    fill: #4e342e !important;
}

/* ── 도넛 가운데: 거래량 텍스트 (상단) ─────────── */
#variety-pie-chart .apexcharts-datalabel-label {
    font-size: 20px !important;
    font-weight: 700 !important;
    font-family: var(--font-family) !important;
    fill: #333 !important;
}

/* ── 도넛 가운데: 전날 대비 텍스트 (하단) ──────── */
#variety-pie-chart .apexcharts-datalabel-value {
    font-size: 15px !important;
    font-family: var(--font-family) !important;
}

/* ── 로딩 상태 ─────────────────────────────────── */
.price-loading {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 40px 20px;
    color: #aaa;
    font-size: 15px;
    font-family: var(--font-family);
}

.price-loading i {
    font-size: 20px;
    color: burlywood;
}

/* ── 품종별 가격 분포: 양옆 패딩 (full-bleed 해제) ── */
#box-plot-chart {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
}

/* ── 품종별 가격 분포: 축 레이블 ───────────────────── */
#box-plot-chart .apexcharts-xaxis text,
#box-plot-chart .apexcharts-yaxis text {
    font-size: 15px !important;
    font-family: var(--font-family) !important;
}

/* ── 품종별 가격 분포: 단위 표기 ───────────────────── */
#box-plot-chart .apexcharts-subtitle-text {
    font-size: 15px !important;
    fill: #999 !important;
    font-family: var(--font-family) !important;
}

/* ── 물량·가격 상관관계: 양옆 패딩 (full-bleed 해제) ── */
#scatter-chart {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
}

/* ── 물량·가격 상관관계: 축 레이블 + 범례 ──────────── */
#scatter-chart .apexcharts-xaxis text,
#scatter-chart .apexcharts-yaxis text,
#scatter-chart .apexcharts-legend-text {
    font-size: 15px !important;
    font-family: var(--font-family) !important;
}

/* ── 물량·가격 상관관계: 단위 표기 ─────────────────── */
#scatter-chart .apexcharts-subtitle-text {
    font-size: 15px !important;
    fill: #999 !important;
    font-family: var(--font-family) !important;
}

/* ── 물량·가격 상관관계: 축 제목 ────────────────────── */
#scatter-chart .apexcharts-xaxis-title text,
#scatter-chart .apexcharts-yaxis-title text {
    font-size: 12px !important;
    fill: #aaa !important;
    font-family: var(--font-family) !important;
}

/* ── 요일별 시장 동향: 전체 너비 확장 ──────────────── */
#dow-chart {
    margin-left: -20px;
    margin-right: -20px;
    width: calc(100% + 40px);
}

/* ── 요일별 시장 동향: 축 레이블 ────────────────────── */
#dow-chart .apexcharts-xaxis text,
#dow-chart .apexcharts-yaxis text {
    font-size: 15px !important;
    font-family: var(--font-family) !important;
}

/* ── 요일별 시장 동향: 단위 표기 ────────────────────── */
#dow-chart .apexcharts-title-text,
#dow-chart .apexcharts-subtitle-text {
    font-size: 13px !important;
    font-weight: 400 !important;
    fill: #aaa !important;
    font-family: var(--font-family) !important;
    transform: translateY(-9px);
}

/* ── 요일별 시장 동향: 범례 ──────────────────────────── */
#dow-chart .apexcharts-legend-text {
    font-size: 15px !important;
    font-family: var(--font-family) !important;
}

/* ════════════════════════════════════════════════════
   공판장 고정 시세 비교 카드
   ════════════════════════════════════════════════════ */

/* 공판장 구분 라벨 (청송유통 / 안동농협) */
.corp-fixed-section {
    margin-bottom: 14px;
}

.corp-fixed-section:last-child {
    margin-bottom: 0;
}

.corp-fixed-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 10px;
    font-size: 17px;
    font-weight: 700;
    color: #3d2b1f;
    margin-bottom: 20px;
    padding-left: 2px;
}

.corp-fixed-date {
    font-size: 13px;
    font-weight: 400;
    color: #aaa;
}

/* ════════════════════════════════════════════════════
   전국 도매시장 — 부모/자식 버튼 UI
   ════════════════════════════════════════════════════ */

/* 날짜 태그 (카드 헤더 우측) */
.market-date-tag {
    font-size: 13px;
    color: #aaa;
    font-weight: 400;
}

/* 인라인 섹션 레이블 */
.market-inline-section-label {
    font-size: 18px;
    font-weight: 700;
    color: #4e342e;
    padding: 14px 0 6px;
}

/* 시장/법인 버튼 그룹 — 3열 그리드 (KPI와 동일) */
.market-btn-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 4px 0 8px;
}

/* 공통 버튼 — KPI 박스 동일 구조 */
.market-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    cursor: pointer;
    font-family: var(--font-family);
    padding: 0;
    transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}

.market-btn:hover {
    border-color: var(--brown, #8c5e3c);
    background: #fff8f4;
}

.market-btn.active {
    border-color: var(--brown, #8c5e3c);
    background: #faf8f6;
    box-shadow: 0 2px 8px rgba(140, 94, 60, 0.12);
}

/* 버튼 상단 콘텐츠 영역 (가격 + 변동) */
.mk-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 14px 6px 10px;
    width: 100%;
    gap: 10px;
}

/* 가격 — kpi-value와 동일 */
.mk-value {
    font-size: 16px;
    font-weight: 900;
    color: var(--brown, #8c5e3c);
    line-height: 1.2;
    text-align: center;
    word-break: break-all;
}

/* 전일 대비 변동 — kpi-trend와 동일 */
.mk-change {
    font-size: 12px;
    font-weight: 600;
    color: #ccc;
    min-height: 14px;
    text-align: center;
    line-height: 1;
}

/* 시장/법인명 라벨 — kpi-label과 동일 */
.mk-label {
    width: 100%;
    font-size: 17px;
    color: #333;
    font-weight: 600;
    text-align: center;
    border-top: 1px solid #e8e0db;
    padding: 8px 4px;
    line-height: 1.3;
    word-break: keep-all;
}

/* 외 N개 배지 (라벨 내부) */
.mk-corp-count {
    display: inline-block;
    font-size: 15px;
    font-weight: 400;
    color: #aaa;
    margin-left: 4px;
}

.mk-up {
    font-size: 13px;
    color: #ef4444;
    font-weight: 600;
}

.mk-dn {
    font-size: 12px;
    color: #3b82f6;
    font-weight: 600;
}

/* 법인 선택 후 헤더 (뒤로 + 시장명) */
.market-corp-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 4px 0 10px;
}

.market-back-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 6px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    font-size: 15px;
    font-family: var(--font-family);
    color: #333;
    font-weight: 700;
    transition: all 0.2s;
    box-sizing: border-box;
    width: 100%;
}

.market-back-btn:hover {
    border-color: var(--brown, #8c5e3c);
    background: #fffafa;
}

.market-back-btn:hover {
    background: #f0ebe6;
}

.market-selected-nm {
    font-size: 15px;
    font-weight: 700;
    color: var(--brown-dark, #3d2b1f);
}

/* 외 N개 법인 버튼 — 점선 테두리로 구분 */
.market-others-btn {
    border-style: dashed;
    background: #fafafa;
}

.market-others-btn .mk-value {
    color: #aaa;
    font-size: 18px;
    letter-spacing: 4px;
}

.market-others-btn .mk-label {
    color: #888;
    border-top-color: #eee;
}

/* Stage 3: collapsed view — flex (버튼 1~2개) */
#market-corp-collapsed {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 4px 0 8px;
}

#market-corp-collapsed .market-btn {
    min-width: 140px;
    flex: 1;
}

/* analysis-section 카드 간격 */
#analysis-section>.card+.card {
    margin-top: 8px;
}

#analysis-section>.card:first-child {
    margin-top: 8px;
}

/* placeholder 텍스트 */
.market-placeholder {
    font-size: 14px;
    color: #bbb;
    padding: 8px 0;
}

/* 분석 패널 KPI 행 */
.market-kpi-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin: 12px 0 16px;
}

.market-kpi-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 14px 6px 12px;
    gap: 6px;
}

.market-kpi-val {
    font-size: 15px;
    font-weight: 900;
    color: var(--brown, #8c5e3c);
    text-align: center;
    line-height: 1.2;
    word-break: break-all;
}

.market-kpi-lbl {
    font-size: 12px;
    color: #777;
    font-weight: 500;
    text-align: center;
}

/* 추이 차트 영역 */
.market-trend-chart-area {
    margin: 0 -20px;
    width: calc(100% + 40px);
    min-height: 260px;
}

/* 시장 인사이트 카드 상호작용 */
.insight-card {
    cursor: pointer;
    transition: transform 0.2s, background-color 0.2s;
}

.insight-card:hover {
    background-color: #fcfaf8;
}

.insight-card:active {
    transform: scale(0.98);
}

.insight-card .kpi-sub {
    font-size: 15px;
    color: #888;
    margin-top: 5px;
}

/* 시장 인사이트 모달 전용 스타일 */
.insight-modal-info {
    margin-bottom: 20px;
    padding: 12px;
    background: #faf8f6;
    border-radius: 8px;
}

.insight-modal-desc {
    font-size: 14px;
    color: #777;
    margin: 0;
}

.modal-notice {
    padding: 12px 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 15px;
    color: #666;
    line-height: 1.5;
    word-break: keep-all;
}

.insight-modal-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.insight-modal-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    gap: 15px;
}

.insight-rank {
    width: 28px;
    height: 28px;
    background: #8c5e3c;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.insight-info {
    flex: 1;
}

.insight-main {
    display: block;
    font-weight: 700;
    font-size: 16px;
    color: #333;
    line-height: 1.3;
}

.insight-sub {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: #888;
    margin-top: 2px;
}

.insight-v-value {
    font-weight: 700;
    font-size: 18px;
    color: #8c5e3c;
}

.insight-v-pct {
    display: inline-block;
    width: 80px;
    font-size: 14px;
    font-weight: 600;
    color: #ef4444;
    text-align: left;
}

.insight-v-num {
    display: inline-block;
    min-width: 80px;
    text-align: right;
}

.insight-v-sub {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: #999;
    text-align: right;
}

.insight-modal-item:nth-child(2) .insight-rank {
    background: #a67c52;
}

.insight-modal-item:nth-child(3) .insight-rank {
    background: #bfa38a;
}

.insight-modal-item:nth-child(4) .insight-rank {
    background: #d4c0b0;
}

.insight-modal-item:nth-child(5) .insight-rank {
    background: #e8ddd7;
    color: #8c7060;
}

/* ?? (+) ?붾낫湲?踰꾪듉 ?? */
.header-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #f0f0f0;
    color: #8c5e3c;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s, color 0.2s;
    margin-left: auto;
    /* ?곗륫 ?뺣젹 */
}

.header-more-btn:hover {
    background: #8c5e3c;
    color: #fff;
}

/* ?? 怨듯뙋???곸꽭 紐⑤떖 異붽? ?ㅽ????? */
#fixedDetailModal .modal-content {
    max-width: 800px;
    width: 95%;
}

.modal-section-title {
    font-size: 18px;
    font-weight: 800;
    color: #3d2b1f;
    margin: 24px 0 16px;
    padding-left: 4px;
    border-left: 4px solid #8c5e3c;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-analysis-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modal-chart-item {
    background: #fff;
    border: 1px solid #f0f1f5;
    border-radius: 12px;
    padding: 16px;
}

.modal-chart-row {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 15px;
}

.chart-label {
    font-size: 14px;
    font-weight: 700;
    color: #888;
    margin-bottom: 12px;
}

.modal-chart-area {
    min-height: 280px;
    width: 100%;
}

.modal-date-tag {
    font-size: 13px;
    font-weight: 400;
    color: #aaa;
    margin-left: 8px;
}

/* 嫄곕옒 ?댁뿭 ?뚯씠釉?*/
.fixed-trade-list-wrapper {
    max-height: 350px;
    overflow-y: auto;
    border: 1px solid #f0f1f5;
    border-radius: 12px;
    background: #fff;
}

.fixed-trade-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-family);
}

.fixed-trade-table th {
    position: sticky;
    top: 0;
    background: #faf8f6;
    padding: 12px 10px;
    font-size: 14px;
    font-weight: 700;
    color: #777;
    border-bottom: 2px solid #eee;
    text-align: center;
    white-space: nowrap;
}

.fixed-trade-table td {
    padding: 12px 10px;
    font-size: 14px;
    color: #444;
    border-bottom: 1px solid #f5f5f5;
    text-align: center;
}

.fixed-trade-table tr:last-child td {
    border-bottom: none;
}

.fixed-trade-table tr:hover td {
    background: #fcfaf8;
}

@media (max-width: 600px) {
    .modal-chart-row {
        grid-template-columns: 1fr;
    }

    .fixed-trade-table th,
    .fixed-trade-table td {
        padding: 10px 6px;
        font-size: 12px;
    }
}

/* 공판장 카드 내 품종 드롭다운 */
.corp-variety-select {
    border: none;
    background: transparent;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font-family);
    color: #666;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    padding-right: 14px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='6'%3E%3Cpath d='M1 1l3.5 3.5L8 1' stroke='%23574541' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    outline: none;
    text-align: right;
    text-align-last: right;
}

.corp-name-main {
    font-size: 16px;
    font-weight: 800;
    color: #4e342e;
    margin-right: 8px;
}