:root {
  --primary: hsl(202, 85%, 61%);
  --primary-light: hsl(212, 72%, 70%);
  --primary-light-1: hsl(207, 100%, 97%);
  --primary-dark: hsl(207, 73%, 57%);
  --n5-color: #10b981;
  --n5-dark: #059669;
  --slate-900: #0f172a;
  --slate-50: #f8fafc;
  --slate-500: #64748b;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;

  --text-light: oklab(71.366% -0.00289 -0.01904);
  --accent-bg: hsl(0, 0%, 98%);
  --green-500: #22c55e;
  --green-600: #16a34a;
  --red-400: #f87171;
  --red-600: #dc2626;

  --danger: #f56565;
  --warning: #ecc94b;
  /* --primary: #6772e5; */
}

[data-theme="dark"] {
  --accent-bg: #212121;
  --slate-900: #e2e8f0;
}

#nihonez-primary {
  background-color: var(--accent-bg);
}
.test-info-container {
  margin-bottom: 2rem;
}

/* Breadcrumb */
.breadcrumb-nav {
  background: var(--background);
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.breadcrumb {
  max-width: 1200px;
  margin: auto;
}

/* Header */
.test-header {
  background: var(--background);
  padding: 1rem;
  border-bottom: 1px solid var(--border);
  margin: auto;
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: flex-start;
}

.test-badges {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.test-badge {
  display: inline-block;
  width: fit-content;
  padding: 4px 12px;
  background: #f0fdf4;
  border: 1px solid #d1fae5;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--n5-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.test-tag {
  display: inline-block;
  padding: 4px 10px;
  background: #fee2e2;
  border: 1px solid #fca5a5;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
  color: #991b1b;
  letter-spacing: 0.3px;
}

/* Dark mode support for tags */
[data-theme="dark"] .test-tag {
  background: #7f1d1d;
  border-color: #991b1b;
  color: #fecaca;
}

.test-title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 16px;
  display: block;
}

.test-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.875rem;
  color: var(--text-medium);
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Test Description */
.test-description {
  max-width: 1200px;
  margin: 1.5rem auto 0;
}

.test-description p {
  font-size: 0.875rem;
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: 12px;
  padding-bottom: 2rem;
}

.test-description p:last-child {
  margin-bottom: 0;
}

.test-description a {
  color: var(--primary);
  text-decoration: none;
}

.test-description a:hover {
  text-decoration: underline;
}

/* Test Warning Banner */
.test-warning-banner {
  margin-top: 1rem;
}

.warning-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 0.75rem;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-left: 3px solid #f59e0b;
  border-radius: 6px;
}

.warning-icon {
  font-size: 1.125rem;
  line-height: 1;
  flex-shrink: 0;
  display: none;
}

.warning-text {
  flex: 1;
  color: #92400e;
  font-size: 0.875rem;
  line-height: 1.5;
}

.warning-text p {
  margin: 0;
  padding: 0;
}

.warning-text p:not(:last-child) {
  margin-bottom: 6px;
}

.warning-text strong {
  color: #78350f;
  font-weight: 600;
}

/* Dark mode support for warning banner */
[data-theme="dark"] .warning-content {
  background: #451a03;
  border-color: #78350f;
}

[data-theme="dark"] .warning-text {
  color: #fef3c7;
}

[data-theme="dark"] .warning-text strong {
  color: #fde68a;
}

/* Responsive adjustments for warning banner */
@media (max-width: 768px) {
  .warning-content {
    padding: 8px 12px;
    gap: 8px;
  }

  .warning-icon {
    font-size: 1rem;
  }

  .warning-text {
    font-size: 0.8125rem;
  }
}

/* Container */
.main-section-container {
  max-width: 1200px;
  padding: 2rem 0;
  margin: auto;
}

.content-layout {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 1rem;
}

/* Main Section */
.main-section {
  flex: 1;
}

.section-title {
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 24px;
  line-height: unset;
  letter-spacing: unset;
}

/* Mode Selector */
.mode-selector {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
  padding-bottom: 32px;
}

.mode-option {
  flex: 1;
}

.mode-radio {
  display: none;
}

.mode-label {
  display: block;
  padding: 12px 16px;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 6px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
}

.mode-radio:checked + .mode-label {
  border-color: var(--n5-color);
  background: #f0fdf4;
}

.mode-label:hover {
  border-color: var(--n5-color);
}

.mode-title {
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--text-dark);
}

/* Practice Instructions */
.practice-instructions,
.exam-instructions {
  padding: 16px;
  background: #fffbeb;
  border: 1px solid #fef3c7;
  border-radius: 6px;
  margin-bottom: 32px;
  font-size: 0.875rem;
  color: var(--text-medium);
  display: none;
}

.exam-instructions {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  display: block;
}

.exam-instructions.hide {
  display: none;
}

.practice-instructions.visible {
  display: block;
}

/* Test Structure */
.test-structure {
  margin-bottom: 32px;
}

.structure-subtitle {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.structure-section {
  margin-bottom: 16px;
}

.structure-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}

.structure-header:hover {
  border-color: var(--n5-color);
}

.structure-header.selected {
  border-color: var(--n5-color);
  background: #f0fdf4;
}

.structure-header.expanded {
  border-radius: 6px 6px 0 0;
  border-bottom-color: transparent;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-checkbox {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--n5-color);
  display: none;
}

.section-checkbox.visible {
  display: block;
}

.header-title {
  font-size: 0.938rem;
  font-weight: 500;
  color: var(--text-dark);
}

.section-stats {
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: 0.813rem;
  color: var(--text-light);
}

.toggle-arrow {
  color: var(--text-light);
  font-size: 0.75rem;
  transition: transform 0.2s;
}

.structure-header.expanded .toggle-arrow {
  transform: rotate(180deg);
}

/* Mondai List */
.mondai-list {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s;
  background: var(--background);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 6px 6px;
}

.mondai-list.expanded {
  max-height: 500px;
}

.mondai-list-inner {
  padding: 8px;
}

.mondai-item {
  padding: 10px 12px;
  background: #fafafa;
  border: 1px solid transparent;
  border-radius: 4px;
  margin-bottom: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s;
}

.mondai-item:last-child {
  margin-bottom: 0;
}

.mondai-item:hover {
  background: #f5f5f5;
  border-color: var(--border);
}

.mondai-item.selected {
  background: #f0fdf4;
  border-color: var(--n5-color);
}

.mondai-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mondai-checkbox {
  width: 16px;
  height: 16px;
  cursor: pointer;
  accent-color: var(--n5-color);
  display: none;
}

.mondai-checkbox.visible {
  display: block;
}

.mondai-name {
  color: var(--text-dark);
  font-size: 0.875rem;
}

.mondai-range {
  color: var(--text-light);
  font-size: 0.813rem;
}

/* Tips */
.tips-section {
  padding: 20px;
  background: var(--background);
  border-radius: 6px;
  border: 1px solid var(--border);
}

.tips-title {
  font-size: 0.938rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.tips-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tips-list li {
  padding-left: 20px;
  margin-bottom: 8px;
  position: relative;
  color: var(--text-medium);
  font-size: 0.875rem;
}

.tips-list li::before {
  content: "•";
  position: absolute;
  left: 6px;
  color: var(--primary);
}

/* Sidebar */
.test-info-sidebar {
  position: sticky;
  top: 24px;
  height: fit-content;
}

.test-info-sidebar .sidebar-section {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 24px;
  margin-bottom: 20px;
  width: 250px;
}

.test-info-sidebar-section:last-child {
  margin-bottom: 0;
}

.test-info-sidebar-title {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.stat-item {
  text-align: center;
  padding: 16px 12px;
  background: #fafafa;
  border-radius: 4px;
}

.stat-value {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.score-requirement {
  padding: 16px;
  background: #f0fdf4;
  border: 1px solid #d1fae5;
  border-radius: 4px;
  text-align: center;
  margin-bottom: 16px;
}

.score-requirement-title {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.score-requirement-value {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--n5-color);
}

/* Format Table */
.format-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.format-table th,
.format-table td {
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.format-table th {
  font-weight: 500;
  color: var(--text-dark);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: #fafafa;
}

.format-table td {
  color: var(--text-medium);
}

.format-table tr:last-child th,
.format-table tr:last-child td {
  border-bottom: none;
}

/* Start Section */
.start-section {
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.selection-summary {
  margin-bottom: 16px;
  padding: 12px;
  background: #f0fdf4;
  border: 1px solid #d1fae5;
  border-radius: 4px;
  text-align: center;
  display: none;
}

.selection-summary.visible {
  display: block;
}

.summary-text {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.summary-details {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark);
}

.start-btn {
  width: 100%;
  padding: 14px 20px;
  background: var(--n5-color);
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 0.938rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.start-btn:hover:not(:disabled) {
  background: var(--n5-dark);
}

.start-btn:disabled {
  background: #d1d5db;
  cursor: not-allowed;
  opacity: 0.6;
}

/* ==================== RESPONSIVE ==================== */

@media (max-width: 1200px) {
  .main-section-container {
    margin: 1rem;
  }
}

@media (max-width: 992px) {
  .content-layout {
    flex-direction: column-reverse;
  }

  .main-section-container {
    margin: auto;
    padding: 1rem;
  }

  .test-title {
    font-size: 1.5rem;
  }

  .test-info-sidebar .sidebar-section {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .exam-metrics {
    flex-direction: column;
    align-items: stretch;
  }

  .total-score-box {
    width: 100%;
  }

  .section-breakdown {
    width: 100%;
  }

  .breakdown-item {
    min-width: calc(33.33% - 11px);
  }

  .history-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .action-buttons {
    margin-left: 0;
    width: 100%;
  }

  .btn {
    flex: 1;
  }
}

@media (max-width: 480px) {
  .history-tag-line {
    flex-direction: column;
    align-items: flex-start;
  }

  .breakdown-item {
    min-width: 100%;
  }

  .history-test-title {
    font-size: 1rem;
  }
}

@media (max-width: 320px) {
  .mode-selector {
    flex-direction: column;
  }
}

/* Filter Tabs */
.history-tabs {
  display: flex;
  background: white;
  padding: 4px;
  border: 1px solid var(--slate-200);
  border-radius: 8px;
  width: 100%;
  max-width: 400px;
}

.tab-btn {
  flex: 1;
  padding: 10px 20px;
  border: none;
  background: none;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--slate-500);
  white-space: nowrap;
}

.tab-btn.active {
  background-color: var(--slate-900);
  color: white;
}

.tab-btn:not(.active):hover {
  background-color: var(--slate-50);
  color: var(--slate-700);
}

/* History Cards Container */
.history-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Hide filtered cards */
.history-card.hidden {
  display: none;
}
/* ==================== Header ==================== */

.history-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.history-header h2 {
  margin: 0;
}

.history-header-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.history-header-actions {
  display: flex;
  gap: 8px;
}

/* ==================== CARD LAYOUT ==================== */

.history-cards {
  margin-bottom: 1.5rem;
}
.history-card {
  background: white;
  border: 1px solid var(--slate-200);
  border-left: 2px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: stretch;
}

.history-card[data-mode="exam"].passed {
  border-left-color: var(--success);
}

.history-card[data-mode="exam"].failed {
  border-left-color: var(--danger);
}

.history-card:hover {
  /* border-left-color: var(--primary); */
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  /* border-color: var(--slate-300); */
}

/* ==================== COLUMN 1: META INFO ==================== */

.history-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
  width: 280px;
}

.history-tag-line {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.history-badge {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.125rem 0.625rem;
  border-radius: 6px;
}

.history-badge.exam {
  background: #f3e8ff;
  color: #7e22ce;
}

.history-badge.practice {
  background: #ffedd5;
  color: #c2410c;
}

.history-date-text {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--slate-400);
}

.history-test-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.history-test-subtitle {
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-weight: 400;
  margin: 0;
}

/* ==================== COLUMN 2: METRICS ==================== */

.history-metrics {
  flex-grow: 1;
  display: flex;
  align-items: center;
}

/* PRACTICE: Progress Bar Layout */
.drill-progress {
  width: 100%;
}

.progress-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--slate-400);
}

.score-fraction {
  font-size: 0.875rem;
}

.score-fraction.good {
  color: var(--green-600);
}

.score-fraction.bad {
  color: var(--slate-400);
}

.progress-track {
  height: 8px;
  width: 100%;
  background-color: var(--slate-100);
  border-radius: 999px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  border-radius: 999px;
  transition: width 0.3s ease;
}

.progress-fill.good {
  background-color: var(--green-500);
}

.progress-fill.bad {
  background-color: var(--red-400);
}

/* EXAM: Score + Breakdown Layout */
.exam-metrics {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  width: 100%;
}

.total-score-box {
  display: flex;
  flex-direction: column;
  padding: 0.5rem;
  background: var(--accent-bg);
  border-radius: 8px;
  flex-shrink: 0;
}

.score-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
}

.score-display {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.score-max {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.section-breakdown {
  display: flex;
  gap: 12px;
  flex: 1;
}

.breakdown-item {
  display: flex;
  flex-direction: column;
  background: white;
  flex: 1;
  align-items: center;
  justify-content: center;
}

.breakdown-label {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-tertiary);
}

.breakdown-value {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-secondary);
}

/* ==================== COLUMN 3: ACTIONS & STATUS ==================== */

.history-actions {
  margin: auto;
  margin-left: auto;
  /* display: flex; */
  flex-direction: row;
  gap: 12px;
  flex-shrink: 0;
  width: 200px;
  border-left: 1px solid var(--slate-100);
  padding-left: 24px;
  justify-content: flex-end;
  align-items: center;
  /* width: 100%; */
}

.history-status-badge {
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: fit-content;
  height: fit-content;
  display: none;
}

.history-status-badge.passed {
  background: #dcfce7;
  color: #15803d;
  border-radius: 16px;
}

.history-status-badge.failed {
  background: #fef3f2;
  color: rgb(220 38 38);
  border: 1px solid #fee2e2;
  border-radius: 16px;
}

.action-buttons {
  display: flex;
  flex-direction: row;
  gap: 8px;
  width: 100%;
}

/* ==================== BUTTONS ==================== */

.btn {
  padding: 0.5rem 0.75rem;
  border: none;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  white-space: nowrap;
  width: fit-content;
  height: fit-content;
}

.btn-view {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--slate-900);
}

.btn-view:hover {
  background: var(--primary-dark);
}

.btn-review {
  background: var(--slate-900);
  color: var(--slate-100);
  width: fit-content;
}

.btn-review:hover {
  background: var(--primary);
}

.btn-icon {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* ==================== RESPONSIVE DESIGN ==================== */

/* Tablet: 992px and below */
@media (max-width: 992px) {
  .history-card {
    flex-direction: column;
    gap: 16px;
  }

  .history-meta {
    width: 100%;
  }

  .history-metrics {
    width: 100%;
  }

  .history-actions {
    width: 100%;
    border-left: none;
    border-top: 1px solid var(--slate-100);
    padding-left: 0;
    padding-top: 16px;
    flex-direction: row;
    align-items: center;
  }

  .action-buttons {
    flex-direction: row;
    margin-left: auto;
  }

  .history-status-badge {
    width: auto;
  }

  .history-tabs {
    max-width: 100%;
  }
}

/* Mobile: 768px and below */
@media (max-width: 768px) {
  .exam-metrics {
    flex-direction: column;
    align-items: stretch;
  }

  .total-score-box {
    width: 100%;
  }

  .section-breakdown {
    width: 100%;
  }

  .breakdown-item {
    min-width: calc(33.33% - 8px);
  }

  .history-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .action-buttons {
    flex-direction: column;
    margin-left: 0;
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .history-status-badge {
    width: 100%;
  }
}

/* Small Mobile: 480px and below */
@media (max-width: 480px) {
  .history-card {
    padding: 16px;
  }

  .history-tag-line {
    flex-direction: column;
    align-items: flex-start;
  }

  .breakdown-item {
    min-width: 100%;
  }

  .history-test-title {
    font-size: 1rem;
  }

  .score-display {
    font-size: 1.5rem;
  }

  .tab-btn {
    padding: 8px 12px;
    font-size: 0.8125rem;
  }
}

/* ==================== EMPTY STATE ==================== */

.history-empty-state {
  text-align: center;
  padding: 1rem;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin: 1rem 0;
}

.empty-state-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  opacity: 0.8;
}

.empty-state-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.empty-state-text {
  font-size: 0.938rem;
  color: var(--text-medium);
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto 24px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--primary);
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.938rem;
  font-weight: 500;
  transition: all 0.2s;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-primary .btn-icon {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
