        :root {
            --bg-body: #F0F4F8;
            --sidebar-bg: #F8F9FA;
            --primary: #6C5CE7; 
            --primary-light: #A29BFE;
            --text-dark: #2D3436; 
            --text-grey: #636E72;
            --white: #FFFFFF;
            --shadow-card: 0 4px 20px rgba(0,0,0,0.03);
            --radius-card: 24px;
            --fail: #FF7675; 
            --success: #00B894; 
            --gold: #FD79A8;
        }

        body {
            font-family: 'Pretendard', sans-serif;
            background: var(--bg-body);
            color: var(--text-dark); margin: 0; padding: 0; 
            display: flex; height: 100vh; overflow: hidden;
        }

        /* [UI] 스위치 토글 스타일 (신규 추가) */
        .toggle-switch {
            position: relative; display: inline-block; width: 50px; height: 26px; vertical-align: middle; margin-right: 10px;
        }
        .toggle-switch input { opacity: 0; width: 0; height: 0; }
        .slider {
            position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0;
            background-color: #ccc; transition: .4s; border-radius: 34px;
        }
        .slider:before {
            position: absolute; content: ""; height: 20px; width: 20px; left: 3px; bottom: 3px;
            background-color: white; transition: .4s; border-radius: 50%;
        }
        input:checked + .slider { background-color: var(--primary); }
        input:checked + .slider:before { transform: translateX(24px); }

        /* 모바일 전용 버튼 */
        .mobile-menu-btn {
            display: none; position: fixed; top: 15px; left: 15px; z-index: 1001;
            background: var(--primary); color: white; border: none;
            border-radius: 8px; padding: 8px 12px; font-size: 1.5rem; cursor: pointer;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }
        .sidebar-overlay {
            display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.5); z-index: 999; backdrop-filter: blur(3px);
        }

        /* 사이드바 */
        .sidebar {
            width: 260px; background: var(--sidebar-bg); padding: 30px 20px; 
            display: flex; flex-direction: column; border-right: 2px solid #E1E4E8;
            flex-shrink: 0; z-index: 1000; box-shadow: 2px 0 10px rgba(0,0,0,0.03);
            transition: transform 0.3s ease;
        }
        .logo { font-size: 1.4rem; font-weight: 900; color: var(--primary); margin-bottom: 40px; padding-left: 10px; }
        .nav-list { list-style: none; padding: 0; margin: 0; flex: 1; }
        .nav-item {
            padding: 14px 18px; margin-bottom: 12px; border-radius: 14px;
            color: var(--text-grey); font-weight: 700; cursor: pointer; text-decoration: none;
            display: flex; align-items: center; gap: 12px; transition: 0.2s;
            background: white; border: 1px solid #EAEAEA; box-shadow: 0 2px 4px rgba(0,0,0,0.02);
        }
        .nav-item:hover, .nav-item.active { 
            background: var(--primary); color: white; border-color: var(--primary);
            transform: translateY(-2px); box-shadow: 0 4px 8px rgba(108, 92, 231, 0.3);
        }
        .nav-icon { width: 24px; text-align: center; }

        .profile-card {
            background: white; padding: 15px; border-radius: 16px;
            display: flex; align-items: center; gap: 12px; cursor: pointer; transition: 0.3s; margin-top: auto;
            border: 1px solid #EAEAEA;
        }
        .profile-card:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(0,0,0,0.05); }

        /* 메인 콘텐츠 */
        .main-content {
            flex: 1; padding: 40px 50px; overflow-y: auto; display: flex; flex-direction: column; gap: 20px;
        }
        
        .page-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 10px; }
        .page-title h2 { font-size: 1.8rem; font-weight: 800; margin: 0; color: var(--text-dark); }
        .page-title p { color: var(--text-grey); margin: 5px 0 0 0; }

        .card-box {
            background: var(--white); border-radius: var(--radius-card); padding: 30px;
            box-shadow: var(--shadow-card); transition: 0.3s; border: 1px solid #DCE0E5;
        }

        .ranking-banner {
            background: linear-gradient(135deg, #6C5CE7 0%, #a29bfe 100%);
            color: white; padding: 20px; border-radius: 20px; text-align: center;
            box-shadow: 0 10px 20px rgba(108, 92, 231, 0.2); margin-bottom: 20px;
            border: 2px solid white; outline: 2px solid #a29bfe;
        }
        .ranking-list { display: flex; justify-content: center; gap: 10px; margin-top: 10px; flex-wrap: wrap; }
        .ranking-item { padding: 5px 12px; border-radius: 20px; font-weight: 700; font-size: 0.9rem; background: rgba(255,255,255,0.2); border: 1px solid rgba(255,255,255,0.3); }

        .config-row { display: flex; gap: 15px; margin-bottom: 20px; flex-wrap: wrap; }
        .config-item { flex: 1; display: flex; flex-direction: column; gap: 8px; }
        .styled-input {
            padding: 12px 15px; border: 2px solid #E1E4E8; border-radius: 12px;
            font-size: 1rem; outline: none; transition: 0.2s; background: #F8F9FA;
        }
        .styled-input:focus { border-color: var(--primary); background: #fff; }

        .audio-player-card { 
            background: #F8F9FA; border-radius: 20px; padding: 20px; border: 1px solid #E1E4E8;
        }
        .play-btn-circle {
            width: 50px; height: 50px; border-radius: 50%; background: var(--primary); color: white;
            border: none; cursor: pointer; display: flex; align-items: center; justify-content: center;
            font-size: 1.5rem; box-shadow: 0 5px 15px rgba(108, 92, 231, 0.3); transition: 0.2s;
        }
        .play-btn-circle:hover { transform: scale(1.1); }
        .play-btn-circle:disabled { background: #ddd; box-shadow: none; cursor: not-allowed; }
        
        .progress-container input[type="range"] { width: 100%; cursor: pointer; accent-color: var(--primary); }
        .time-wrapper { font-size: 0.85rem; color: #888; font-weight: 600; text-align: right; margin-top: 5px; }

        /* [수정됨] 입력 레이아웃 동적 변화 */
        .input-layout-col { display: flex; flex-direction: column; gap: 20px; margin-top: 20px; }
        
        /* 기본 상태: 위아래 배치 */
        .input-wrapper { display: flex; flex-direction: column; gap: 10px; }
        
        /* 확장 상태용 (숨김 처리 등) */
        #postEditSection { display: none; transition: all 0.3s ease; }
        #postEditSection.active { display: block; animation: fadeIn 0.5s; }

        @keyframes fadeIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

        .styled-textarea {
            width: 100%; height: 250px; padding: 20px; 
            border: 2px solid #E1E4E8; border-radius: 16px;
            resize: none; font-size: 1.1rem; line-height: 1.8; box-sizing: border-box; outline: none;
            transition: 0.2s; font-family: 'Pretendard', sans-serif; background: #FFFEFC;
        }
        .styled-textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(108, 92, 231, 0.1); background: white; }
        
        .label-badge { display: inline-block; background: #EEEBFF; color: var(--primary); padding: 5px 12px; border-radius: 8px; font-weight: 800; font-size: 0.9rem; border: 1px solid #D1C4E9; }

        .btn-primary {
            background: var(--primary); color: white; border: none; padding: 15px 30px;
            border-radius: 16px; font-size: 1.1rem; font-weight: 800; cursor: pointer;
            width: 100%; margin-top: 20px; transition: 0.2s; box-shadow: 0 10px 20px rgba(108, 92, 231, 0.2);
            border: 2px solid transparent;
        }
        .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(108, 92, 231, 0.3); border-color: #A29BFE; }

        .btn-ghost { background: #fff; border: 2px solid #E1E4E8; padding: 8px 15px; border-radius: 8px; cursor: pointer; font-weight: 600; color: #666; transition: 0.2s; }
        .btn-ghost:hover { border-color: var(--primary); color: var(--primary); }

        /* 결과 화면 스타일 */
        .diff-view { 
            background: #fff; padding: 30px; border: 2px solid #E1E4E8; border-radius: 16px; 
            font-size: 1.25rem; line-height: 2.5; white-space: pre-wrap; word-break: break-all; margin-top: 20px;
        }
        .d-missing { background: #FFEBEE; color: #FF7675; padding: 2px 5px; border-radius: 4px; font-weight: bold; }
        .d-added { color: #00B894; font-weight: bold; text-decoration: underline; }
        .d-wrong { border-bottom: 2px solid var(--primary); position: relative; font-weight: bold; color: var(--primary); }
        .correction { 
            position: absolute; top: -1.4em; left: 0; font-size: 0.8em; line-height: 1;
            color: white; background: var(--primary); padding: 3px 6px; border-radius: 5px; white-space: nowrap;
        }

        /* 정밀 분석 하이라이트 */
        .review-view { background: #fff; line-height: 2.5; font-size: 1.1rem; color: #333; }
        .hl-success { background: #b2fab4; border-bottom: 2px solid #00B894; padding: 2px 4px; border-radius: 4px; font-weight: bold; }
        .hl-warning { background: #fff59d; border-bottom: 2px solid #fbc02d; padding: 2px 4px; border-radius: 4px; }
        .hl-bad { background: #ffccbc; border-bottom: 2px solid #ff5722; padding: 2px 4px; border-radius: 4px; font-weight: bold; }
        .hl-missed { color: #d32f2f; text-decoration: underline; text-decoration-style: wavy; }
        .hl-omitted { background: #F5F5F5; color: #B0BEC5; border: 1px dashed #B0BEC5; border-radius: 4px; padding: 0 2px; margin: 0 1px; font-size: 0.95em; }

        .growth-box { background: #E3F2FD; color: #1565C0; padding: 20px; border-radius: 16px; margin-bottom: 20px; display: none; border: 2px solid #90CAF9; }
        .growth-title { font-weight: 800; font-size: 1.1rem; margin-bottom: 8px; display: block; }

        .toast-msg { 
            position: fixed; top: 20px; left: 50%; transform: translateX(-50%); 
            background: var(--text-dark); color: white; padding: 12px 25px; border-radius: 30px; 
            font-weight: bold; z-index: 2000; display: none; box-shadow: 0 10px 30px rgba(0,0,0,0.2); 
        }

        .modal-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 2000; backdrop-filter: blur(5px); }
        #report-modal { 
            display: none; position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); 
            width: 400px; background: white; padding: 30px; border-radius: 24px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.2); z-index: 2001; border: 1px solid #E1E4E8;
        }

        .error-note-area { background: #FFF8E1; border: 2px solid #FFE082; padding: 20px; border-radius: 16px; display: none; margin-bottom: 20px; }
        .error-item-row { background: white; padding: 10px; border-radius: 8px; margin-bottom: 5px; font-size: 0.95rem; border: 1px solid rgba(0,0,0,0.1); }

        @media (max-width: 768px) {
            body { overflow: auto; }
            .sidebar { position: fixed; top: 0; left: 0; height: 100%; transform: translateX(-100%); box-shadow: 2px 0 15px rgba(0,0,0,0.1); }
            .sidebar.active { transform: translateX(0); }
            .sidebar-overlay.active { display: block; }
            .mobile-menu-btn { display: block; }
            .main-content { padding: 70px 20px 20px; width: 100%; box-sizing: border-box; }
            .card-box { padding: 20px; }
        }
    

/* sidebar-abbr-visible-20260430: 약어사전 메뉴가 모든 화면에서 보이도록 사이드바 높이/스크롤 보정 */
.sidebar {
  height: 100vh;
  max-height: 100vh;
  overflow-y: auto;
  box-sizing: border-box;
}
.nav-item {
  padding-top: 12px;
  padding-bottom: 12px;
  margin-bottom: 6px;
}
.logo {
  margin-bottom: 24px;
}
.sidebar::-webkit-scrollbar {
  width: 8px;
}
.sidebar::-webkit-scrollbar-thumb {
  background: #C7CEDC;
  border-radius: 999px;
}
.sidebar::-webkit-scrollbar-track {
  background: transparent;
}

/* toksori-ui-only-20260531: 똑소리 기능 유지 + 화면 구조 직관화 */
.toksori-page {
  gap: 18px;
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.toksori-header {
  align-items: center;
  gap: 18px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(225,228,232,0.9);
  border-radius: 24px;
  padding: 22px 24px;
  box-shadow: var(--shadow-card);
}

.toksori-header .eyebrow,
.section-kicker {
  margin: 0 0 6px;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.toksori-header .page-title h2 {
  font-size: 1.95rem;
  letter-spacing: -0.04em;
}

.page-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.danger-lite {
  color: var(--fail);
  border-color: rgba(255,118,117,0.35);
}

.toksori-guide-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.guide-step {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "num title"
    "num desc";
  align-items: center;
  gap: 3px 12px;
  background: #fff;
  border: 1px solid #E1E4E8;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.025);
}

.guide-step strong {
  grid-area: num;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #F0EEFF;
  color: var(--primary);
  font-weight: 900;
}

.guide-step span {
  grid-area: title;
  font-weight: 900;
  color: var(--text-dark);
}

.guide-step small {
  grid-area: desc;
  color: var(--text-grey);
  font-weight: 600;
}

.guide-step.is-active {
  border-color: rgba(108,92,231,0.38);
  background: linear-gradient(180deg, #fff 0%, #F8F6FF 100%);
}

.toksori-work-card,
.result-card,
.review-card,
.history-panel {
  border: 1px solid rgba(108,92,231,0.12);
  box-shadow: 0 12px 36px rgba(45,52,54,0.06);
}

.work-card-header,
.result-header-row,
.review-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
}

.work-card-header h3,
.result-header-row h3,
.review-header-row h3 {
  margin: 0;
  font-size: 1.28rem;
  letter-spacing: -0.03em;
}

.work-card-header p:not(.section-kicker),
.result-header-row p:not(.section-kicker) {
  margin: 6px 0 0;
  color: var(--text-grey);
  font-weight: 600;
}

.clear-btn {
  flex-shrink: 0;
}

.setup-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(360px, 1.5fr);
  gap: 16px;
  margin-bottom: 22px;
}

.setup-panel {
  background: #F8F9FA;
  border: 1px solid #E1E4E8;
  border-radius: 20px;
  padding: 18px;
}

.setup-panel-title {
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 9px;
}

.clean-config-row {
  margin-bottom: 0;
}

.clean-config-row label,
.config-item label {
  font-weight: 800;
  font-size: 0.86rem;
  color: #525B60;
}

.audio-setup {
  margin: 0;
}

.audio-topline,
.audio-meta-row,
.audio-control-row,
.input-label-row,
.error-note-head,
.history-control-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.audio-topline small {
  color: var(--text-grey);
  font-weight: 600;
}

.file-open-btn,
.mini-file-label {
  white-space: nowrap;
}

.audio-control-row {
  align-items: center;
  margin-top: 15px;
}

.audio-progress-area {
  flex: 1;
  min-width: 0;
}

.speed-select {
  border: none;
  background: transparent;
  color: var(--primary);
  font-weight: 900;
  cursor: pointer;
  outline: none;
}

.clean-input-area {
  margin-top: 0;
}

.input-label-row {
  margin-bottom: 2px;
}

.mini-file-label {
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 900;
  color: var(--primary);
}

.student-badge {
  background: #FFF3E0;
  color: #F57C00;
  border-color: #FFE0B2;
}

.post-badge {
  background: #E3F2FD;
  color: #1976D2;
  border-color: #BBDEFB;
}

.styled-textarea {
  min-height: 230px;
  height: 230px;
  background: #FFFEFC;
}

#studentPre.styled-textarea {
  min-height: 270px;
  height: 270px;
}

.advanced-options {
  border: 1px dashed #CED4DA;
  border-radius: 18px;
  background: #FCFCFD;
  overflow: hidden;
}

.advanced-options summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 15px 18px;
  font-weight: 900;
  color: var(--text-dark);
}

.advanced-options summary::-webkit-details-marker,
.history-panel summary::-webkit-details-marker,
.ranking-banner-compact summary::-webkit-details-marker,
.result-detail-panel summary::-webkit-details-marker {
  display: none;
}

.advanced-options summary::after,
.history-panel summary::after,
.ranking-banner-compact summary::after,
.result-detail-panel summary::after {
  content: "펼치기";
  font-size: 0.78rem;
  color: var(--primary);
  border: 1px solid rgba(108,92,231,0.2);
  background: #F4F1FF;
  border-radius: 999px;
  padding: 5px 10px;
  white-space: nowrap;
}

.advanced-options[open] summary::after,
.history-panel[open] summary::after,
.ranking-banner-compact[open] summary::after,
.result-detail-panel[open] summary::after {
  content: "접기";
}

.advanced-options summary small,
.history-panel summary small {
  color: var(--text-grey);
  font-weight: 700;
}

.advanced-body {
  border-top: 1px solid #E9ECEF;
  padding: 15px 18px 18px;
}

.advanced-toggle-line {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.advanced-toggle-line b {
  display: block;
  color: var(--primary);
  margin-bottom: 3px;
}

.advanced-toggle-line em {
  display: block;
  font-style: normal;
  color: var(--text-grey);
  font-size: 0.86rem;
  font-weight: 600;
}

.input-guide-text {
  color: var(--text-grey);
  font-size: 0.9rem;
  font-weight: 600;
}

.grade-action-btn {
  margin-top: 26px;
  font-size: 1.22rem;
  padding: 18px 30px;
  border-radius: 18px;
}

.result-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.result-summary-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1.1fr);
  gap: 18px;
  margin-bottom: 18px;
}

.score-summary-card,
.chart-summary-card {
  background: #F8F9FA;
  border: 1px solid #E9ECEF;
  border-radius: 20px;
  padding: 24px;
}

.score-summary-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.score-label {
  color: var(--text-grey);
  font-weight: 800;
  margin-bottom: 8px;
}

.score-value {
  font-size: 4rem;
  line-height: 1;
  font-weight: 950;
  color: var(--primary);
}

.score-desc {
  margin-top: 10px;
  font-weight: 700;
  color: #555;
}

.chart-summary-card {
  min-height: 260px;
  height: 260px;
}

.chart-title {
  font-weight: 900;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.chart-summary-card canvas {
  max-height: 220px;
}

.error-note-area {
  margin: 0 0 18px;
}

.error-note-head {
  cursor: pointer;
}

.error-note-title {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-weight: 900;
  color: #F57C00;
}

#errorToggleIcon {
  font-size: 0.82rem;
  color: #F57C00;
  font-weight: 800;
}

.save-note-btn {
  background: white;
  font-size: 0.82rem;
  padding: 6px 10px;
}

.error-list-box {
  display: none;
  margin-top: 15px;
  border-top: 1px solid rgba(0,0,0,0.05);
  padding-top: 15px;
}

.result-detail-panel {
  border: 1px solid #E1E4E8;
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
}

.result-detail-panel summary {
  cursor: pointer;
  padding: 16px 18px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.result-detail-panel .diff-view {
  border: 0;
  border-top: 1px solid #E9ECEF;
  border-radius: 0;
  margin-top: 0;
}

.review-card {
  border-color: rgba(255,152,0,0.45);
}

.review-legend {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.review-guide {
  margin-top: 15px;
  background: #FFF3E0;
  padding: 12px;
  border-radius: 10px;
  font-size: 0.92rem;
}

.history-panel {
  background: #FAFAFA;
}

.history-panel summary,
.ranking-banner-compact summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 900;
}

.history-panel summary span {
  color: var(--text-dark);
}

.history-control-row {
  justify-content: flex-end;
  padding: 14px 0 4px;
}

.ranking-banner-compact {
  margin: 0 0 10px;
  text-align: left;
  padding: 16px 20px;
}

.ranking-banner-compact .ranking-list {
  justify-content: flex-start;
  margin-top: 14px;
}

@media (max-width: 980px) {
  .toksori-header,
  .work-card-header,
  .result-header-row,
  .review-header-row {
    flex-direction: column;
    align-items: stretch;
  }
  .page-actions {
    justify-content: flex-start;
  }
  .toksori-guide-strip,
  .setup-grid,
  .result-summary-grid {
    grid-template-columns: 1fr;
  }
  .chart-summary-card {
    min-height: 240px;
    height: 240px;
  }
}

@media (max-width: 768px) {
  .toksori-page {
    max-width: none;
  }
  .toksori-header {
    padding: 18px;
  }
  .toksori-header .page-title h2 {
    font-size: 1.45rem;
  }
  .guide-step {
    padding: 14px;
  }
  .setup-panel,
  .score-summary-card,
  .chart-summary-card {
    padding: 16px;
  }
  .audio-topline,
  .audio-control-row,
  .input-label-row,
  .error-note-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .audio-control-row {
    gap: 12px;
  }
  .audio-progress-area,
  .file-open-btn,
  .mini-file-label {
    width: 100%;
  }
  .styled-textarea,
  #studentPre.styled-textarea {
    min-height: 220px;
    height: 220px;
  }
  .score-value {
    font-size: 3.2rem;
  }
}


/* toksori-ui-only-20260531b: 카드/패널 경계선 소폭 강화 + 실시간 연습왕 제거용 숨김 */
.toksori-header {
  border-color: #D4DAE3;
}

.card-box {
  border-color: #D3D9E2;
}

.guide-step {
  border-color: #D4DBE4;
}

.toksori-work-card,
.result-card,
.review-card,
.history-panel {
  border-color: rgba(108,92,231,0.18);
}

.setup-panel,
.audio-player-card {
  border-color: #D1D8E1;
}

.styled-input,
.styled-textarea,
.btn-ghost,
.diff-view {
  border-color: #D1D8E1;
}

.advanced-options {
  border-color: #C3CAD4;
}

.result-detail-panel {
  border-color: #D3D9E2;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
