/* ===========================
   GLOBAL
=========================== */

body {
    background: linear-gradient(135deg, #e7f1ff 0%, #ffffff 100%);
    color: #333;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    min-height: 100vh;
}

/* Main container */
.character-sheet {
    margin: 0 auto;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    overflow: hidden;
}

.tab-content{
    margin-top: 2rem;
}

/* ===========================
   NAVIGATION TABS
=========================== */

.nav-tabs {
    background: #f8f9fa;
    padding: 15px 15px 0 15px;
    border-bottom: 2px solid #dee2e6;
}

.nav-tabs .nav-link {
    color: #6c757d;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
}

.nav-tabs .nav-link:hover {
    color: #4a9eff;
    border-bottom-color: #4a9eff;
}

.nav-tabs .nav-link.active {
    color: #4a9eff;
    background: white;
    border-bottom-color: #4a9eff;
    font-weight: 600;
}

/* ===========================
   STATS PANEL
=========================== */

.character-portrait {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
    cursor: pointer;
    transition: all 0.3s;
}

.character-portrait:hover {
    transform: scale(1.02);
}

.stats-panel {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 2px solid #e9ecef;
}

.stats-panel h4, .stats-panel h5 {
    color: #4a9eff;
    margin-bottom: 15px;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px;
    border-bottom: 1px solid #dee2e6;
}

.stat-row:last-child {
    border-bottom: none;
}

.stat-value {
    color: #4a9eff;
    font-weight: bold;
    font-size: 1.2em;
}

.stat-input {
    background: white;
    color: #4a9eff;
    border: 2px solid #dee2e6;
    padding: 4px 8px;
    border-radius: 4px;
    width: 80px;
    text-align: center;
    font-weight: bold;
    transition: all 0.2s;
}

.stat-input:focus {
    border-color: #4a9eff;
    box-shadow: 0 0 0 0.2rem rgba(74, 158, 255, 0.25);
}

.level-btn {
    color: #4a9eff;
    border: 2px solid #333;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

/* ===========================
   HP BAR
=========================== */

.hp-bar-container,
.hp-bar {
    position: relative;
    width: 100%;
    height: 30px;
    background: #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    margin: 10px 0;
    border: 1px solid #dee2e6;
}

.hp-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #28a745 0%, #20c997 100%);
    transition: width 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

.hp-bar-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
    color: #333;
}

/* ===========================
   CLASS SELECTION
=========================== */

.class-selection {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border: 2px solid #e9ecef;
}

.class-selection h5 {
    color: #4a9eff;
    margin-bottom: 15px;
}

.class-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.btn-class {
    background: white;
    color: #6c757d;
    border: 2px solid #dee2e6;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-class:hover {
    border-color: #4a9eff;
    color: #4a9eff;
    transform: translateY(-2px);
}

.btn-class.selected {
    background: #e7f1ff;
    border-color: #4a9eff;
    color: #4a9eff;
    box-shadow: 0 0 15px rgba(74, 158, 255, 0.3);
}

/* ===========================
   SKILL TREE
=========================== */

.skill-tree {
    margin: 30px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 2px solid #e9ecef;
}

.skill-tree-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #dee2e6;
}

.attribute-name {
    font-size: 1.5em;
    font-weight: bold;
    color: #4a9eff;
}

.class-indicator {
    font-size: 0.9em;
    color: #888;
    font-style: italic;
}

.skill-columns {
    display: flex;
    gap: 40px;
    overflow-x: auto;
    padding: 20px 0;
}

.skill-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
    min-width: 200px;
}

.skill-column.class-only {
    border-left: 3px solid #ffd700;
    padding-left: 20px;
}

.skill-column-label {
    font-size: 0.85em;
    color: #ffd700;
    font-weight: bold;
    text-align: center;
    margin-bottom: 5px;
    text-transform: uppercase;
}

/* ===========================
   SKILL NODES
=========================== */

.skill-node {
    padding: 12px;
    background: white;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.skill-node:hover:not(.locked) {
    border-color: #4a9eff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(74, 158, 255, 0.2);
}

.skill-node.selected {
    background: #e7f1ff;
    border-color: #4a9eff;
    box-shadow: 0 0 15px rgba(74, 158, 255, 0.4);
}

.skill-node.locked {
    opacity: 0.4;
    cursor: not-allowed;
}

.skill-node.negative {
    border-color: #ff6b6b;
}

.skill-node.negative.selected {
    background: #ffe5e5;
    border-color: #ff6b6b;
    box-shadow: 0 0 15px rgba(255, 107, 107, 0.4);
}

.skill-node.class-only-skill {
    border-color: #ffd700;
}

.skill-node.class-only-skill.selected {
    background: #fff8d6;
    border-color: #ffd700;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.skill-name {
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 0.95em;
}

.skill-description {
    font-size: 0.8em;
    color: #666;
}

.skill-cost {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ffd700;
    color: #000;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8em;
    font-weight: bold;
}

.skill-cost.negative {
    background: #ff6b6b;
    color: #fff;
}

/* Scrollbar */
.skill-columns::-webkit-scrollbar {
    height: 8px;
}

.skill-columns::-webkit-scrollbar-track {
    background: #f8f9fa;
    border-radius: 4px;
}

.skill-columns::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

.skill-columns::-webkit-scrollbar-thumb:hover {
    background: #4a9eff;
}

/* ===========================
   GENERAL CONTENT SECTIONS
   (Restores visual structure)
=========================== */

.content-section,
.page-section,
.main-container {
    background: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* If your main page uses .panel or .box */
.panel, .box {
    background: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

/* ===========================
   INVENTORY PAGE CONTAINERS
=========================== */

.inventory-section, 
.inventory-container, 
.inventory-grid { 
    background: white; 
    border-radius: 12px; 
    padding: 20px;
    border: 2px solid #e9ecef; 
    margin-bottom: 25px; 
} 

.inventory-slot { 
    aspect-ratio: 1; 
    border: 2px dashed #dee2e6; 
    border-radius: 8px; 
    display: flex;
    flex-direction: column;
    align-items: center; 
    justify-content: center; 
    cursor: pointer; 
    transition: all 0.2s; 
    min-height: 80px; 
    background: #f8f9fa; 
} 

.inventory-slot:hover { 
    border-color: #4a9eff; 
    background: #e7f1ff; 
} 

.inventory-slot.filled { 
    border-style: solid; 
    border-color: #4a9eff; 
    background: white; 
} 

.pinned-slot { 
    padding: 10px; 
    border: 2px solid #dee2e6; 
    border-radius: 8px; 
    min-height: 60px; 
    background: white; 
    cursor: pointer; 
    transition: all 0.2s; 
} 

.pinned-slot:hover { 
    border-color: #4a9eff; 
    background: #f8f9fa; 
} 

.backpack-selector { 
    padding: 10px; 
    border: 2px solid #dee2e6; 
    border-radius: 8px; 
    cursor: pointer; 
    transition: all 0.2s; 
    background: white; 
} 

.backpack-selector:hover { 
    border-color: #4a9eff; 
    background: #e7f1ff; 
} 

.backpack-selector.selected { 
    border-color: #4a9eff; 
    background: #e7f1ff; 
} 

.backpack-selector.active { 
    border: 2px solid #198754; 
    background: #e8f5e9; 
} 

.toggle-slot { 
    cursor: pointer;
    padding: 6px; 
    text-align: center; 
    border: 1px solid #aaa; 
    border-radius: 4px; 
    background: #f8f9fa; 
    height: 2rem; 
} 

.toggle-slot.active-slot { 
    background: #198754; 
    color: white; 
    border-color: #198754; 
} 

.shake { animation: shake 0.2s; } 

@keyframes shake { 
    0% { transform: translateX(0); } 
    25% { transform: translateX(-3px); } 
    50% { transform: translateX(3px); } 
    75% { transform: translateX(-3px); } 
    100% { transform: translateX(0); } 
}

/* ===========================
   PINNED SLOTS
=========================== */

.pinned-slot {
    background: #ffffff;
    border: 2px solid #dee2e6;
    border-radius: 10px;
    padding: 12px;
    min-height: 70px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.pinned-slot:hover {
    border-color: #4a9eff;
    background: #f0f6ff;
}

/* ===========================
   ATTRIBUTE / INFO BOXES
=========================== */

.attribute-section,
.info-box,
.data-box {
    background: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

/* ===========================
   Section Headers
=========================== */

.section-title,
.section-header {
    font-size: 1.3rem;
    font-weight: 700;
    color: #4a9eff;
    margin-bottom: 15px;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 8px;
}

/* ===========================
   WEAPONS TAB
=========================== */

.weapons-category-header {
    color: #4a9eff;
    font-weight: 700;
    font-size: 1.1rem;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 6px;
    margin-bottom: 12px;
    margin-top: 8px;
}

.weapon-card {
    background: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 16px;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: box-shadow 0.2s, border-color 0.2s;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.weapon-card:hover {
    border-color: #4a9eff;
    box-shadow: 0 6px 20px rgba(74, 158, 255, 0.15);
}

.weapon-card-header {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.weapon-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #222;
}

.weapon-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.weapon-tag {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 7px;
    border-radius: 12px;
    background: #f0f0f0;
    color: #555;
}

/* Tag colour variants */
.tag-twohanded   { background: #fff3cd; color: #856404; }
.tag-onehanded   { background: #e7f1ff; color: #0d47a1; }
.tag-concealable { background: #f3e5f5; color: #6a0dad; }
.tag-thrown      { background: #e8f5e9; color: #2e7d32; }
.tag-reach       { background: #fff8d6; color: #5d4037; }
.tag-heavy       { background: #ffe5e5; color: #c62828; }
.tag-loud        { background: #ffe5e5; color: #c62828; }
.tag-powerful    { background: #fff3e0; color: #e65100; }
.tag-silent      { background: #e8f5e9; color: #1b5e20; }
.tag-finesse     { background: #fce4ec; color: #880e4f; }
.tag-defensive   { background: #e3f2fd; color: #0d47a1; }
.tag-crushing    { background: #efebe9; color: #4e342e; }

.weapon-description {
    font-size: 0.85rem;
    color: #555;
    margin: 0;
}

.weapon-passive {
    font-size: 0.82rem;
    background: #f8f9fa;
    border-left: 3px solid #4a9eff;
    padding: 6px 10px;
    border-radius: 0 4px 4px 0;
    color: #444;
}

.passive-label {
    font-weight: 700;
    color: #4a9eff;
}

.weapon-actions {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: auto;
}

.actions-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    color: #999;
    letter-spacing: 0.05em;
}

.weapon-action {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    padding: 8px 10px;
}

.action-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
}

.action-name {
    font-weight: 600;
    font-size: 0.88rem;
    color: #333;
}

.action-stats {
    display: flex;
    align-items: center;
    gap: 6px;
}

.action-ap {
    font-size: 0.78rem;
    font-weight: 700;
    background: #e9ecef;
    color: #555;
    padding: 1px 6px;
    border-radius: 4px;
}

.action-damage {
    font-size: 0.82rem;
    font-weight: 700;
    color: #c0392b;
    background: #fdecea;
    padding: 1px 6px;
    border-radius: 4px;
}

.scaling-badge {
    font-size: 0.72rem;
    font-weight: 600;
    padding: 1px 6px;
    border-radius: 4px;
}

.scaling-melee  { background: #fff3e0; color: #e65100; }
.scaling-ranged { background: #e8f5e9; color: #2e7d32; }

.action-notes {
    font-size: 0.78rem;
    color: #666;
    margin-top: 4px;
    font-style: italic;
}

/* ===========================
   CRAFTING TAB
=========================== */

.crafting-skill-bar {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 14px 18px;
}

.crafting-skill-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.crafting-skill-label {
    font-weight: 700;
    color: #333;
}

.crafting-skill-value {
    color: #4a9eff;
    font-weight: 700;
    font-size: 1.3rem;
}

.crafting-skill-note {
    font-size: 0.82rem;
    color: #888;
}

.crafting-section-title {
    color: #4a9eff;
    font-weight: 700;
    font-size: 1.1rem;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 6px;
    margin-bottom: 8px;
}

.crafting-table-intro {
    font-size: 0.88rem;
    color: #666;
    margin-bottom: 16px;
}

/* Recipe Cards */

.recipe-card {
    background: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 16px;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: box-shadow 0.2s, border-color 0.2s;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}

.recipe-card:not(.recipe-locked):hover {
    border-color: #4a9eff;
    box-shadow: 0 6px 20px rgba(74, 158, 255, 0.15);
}

.recipe-locked {
    opacity: 0.65;
    filter: grayscale(30%);
}

.recipe-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
    flex-wrap: wrap;
}

.recipe-name {
    font-size: 1rem;
    font-weight: 700;
    color: #222;
}

.recipe-description {
    font-size: 0.83rem;
    color: #555;
    margin: 0;
}

.recipe-skill-req {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 12px;
    white-space: nowrap;
}

.skill-met   { background: #e8f5e9; color: #2e7d32; }
.skill-unmet { background: #fdecea; color: #c62828; }

.recipe-stats-badge {
    font-size: 0.8rem;
    background: #e7f1ff;
    border: 1px solid #b3d4ff;
    border-radius: 6px;
    padding: 4px 10px;
    color: #1565c0;
    width: fit-content;
}

.recipe-difficulty {
    display: flex;
    align-items: center;
    gap: 8px;
}

.diff-label {
    font-size: 0.78rem;
    color: #888;
    font-weight: 600;
}

.diff-pips {
    display: flex;
    gap: 3px;
}

.diff-pip {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid #ccc;
}

.pip-filled { background: #4a9eff; border-color: #4a9eff; }
.pip-empty  { background: #f0f0f0; border-color: #ccc; }

.recipe-time {
    font-size: 0.8rem;
    color: #666;
}

.recipe-materials {
    margin-top: 4px;
}

.materials-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    color: #999;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.materials-list {
    font-size: 0.82rem;
    color: #444;
    padding-left: 18px;
    margin: 0;
    line-height: 1.7;
}

.recipe-tools {
    font-size: 0.8rem;
    color: #555;
}

.tools-label {
    font-weight: 700;
    color: #888;
}

.recipe-notes {
    font-size: 0.78rem;
    color: #666;
    font-style: italic;
    background: #f8f9fa;
    border-left: 3px solid #dee2e6;
    padding: 5px 8px;
    border-radius: 0 4px 4px 0;
}

/* Locked overlay */
.locked-overlay {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: #ffe5e5;
    color: #c62828;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 12px;
    border: 1px solid #ffb3b3;
}

/* Armor type badges */
.armor-type-badge {
    font-size: 0.72rem;
    font-weight: 600;
    padding: 2px 7px;
    border-radius: 12px;
    display: inline-block;
}

.type-light       { background: #e8f5e9; color: #2e7d32; }
.type-medium      { background: #fff3e0; color: #e65100; }
.type-heavy       { background: #efebe9; color: #4e342e; }
.type-weapon      { background: #e3f2fd; color: #0d47a1; }
.type-coating     { background: #f3e5f5; color: #6a0dad; }
.type-enchantment { background: #fff8d6; color: #5d4037; }
.type-first-aid   { background: #e8f5e9; color: #2e7d32; }
.type-first_aid   { background: #e8f5e9; color: #2e7d32; }
.type-medicine    { background: #e8f5e9; color: #1b5e20; }
.type-potion      { background: #e7f1ff; color: #1565c0; }
.type-poison      { background: #ffe5e5; color: #c62828; }

/* ===========================
   MATERIAL TABLE
=========================== */

.material-table-wrapper {
    overflow-x: auto;
    border: 2px solid #e9ecef;
    border-radius: 10px;
}

.material-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}

.material-table thead tr {
    background: #f8f9fa;
}

.material-table th {
    padding: 10px 14px;
    text-align: left;
    font-weight: 700;
    color: #4a9eff;
    border-bottom: 2px solid #e9ecef;
    white-space: nowrap;
}

.material-row td {
    padding: 10px 14px;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: top;
}

.material-row:last-child td {
    border-bottom: none;
}

.material-row:hover td {
    background: #f8f9fa;
}

.mat-type {
    display: block;
    font-size: 0.73rem;
    color: #aaa;
    text-transform: capitalize;
}

.availability-badge {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 12px;
    white-space: nowrap;
}

.avail-common     { background: #e8f5e9; color: #2e7d32; }
.avail-uncommon   { background: #fff3e0; color: #e65100; }
.avail-rare       { background: #fce4ec; color: #880e4f; }
.avail-very-rare  { background: #f3e5f5; color: #6a0dad; }

.stat-mod {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    margin: 2px;
}

.mod-positive { background: #e8f5e9; color: #2e7d32; }
.mod-negative { background: #fdecea; color: #c62828; }
.mod-variable { background: #fff8d6; color: #5d4037; }

.mat-notes {
    font-size: 0.8rem;
    color: #555;
    font-style: italic;
    max-width: 280px;
}

/* ===========================
   ALCHEMY TAB EXTRAS
=========================== */

.alchemy-card { border-top: 3px solid #9c27b0; }
.alchemy-card:not(.recipe-locked):hover { border-color: #9c27b0; }

.alchemy-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.alchemy-meta-item {
    font-size: 0.78rem;
    background: #f3e5f5;
    color: #6a0dad;
    padding: 2px 8px;
    border-radius: 12px;
}

.alchemy-effect {
    font-size: 0.83rem;
    background: #f8f9fa;
    border-left: 3px solid #9c27b0;
    padding: 6px 10px;
    border-radius: 0 4px 4px 0;
    color: #333;
}

.effect-label {
    font-weight: 700;
    color: #9c27b0;
    margin-right: 4px;
}

.subsection {
    background: #fafbfc;
    padding: 20px;
    border-radius: 4px;
    margin: 20px 0;
    border-left: 3px solid #95a5a6;
}

.subsection h5 {
    color: #2c3e50;
    margin-bottom: 12px;
    font-size: 1rem;
    font-weight: 500;
}

.secrets-section {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ecf0f1;
    padding: 30px;
    border-radius: 4px;
    margin-bottom: 25px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.secrets-section h4, .secrets-section h5 {
    color: #f39c12;
    margin-top: 15px;
}

.secrets-section p {
    color: #bdc3c7;
    line-height: 1.7;
}

.secret-entry {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 4px;
    margin: 15px 0;
    border-left: 3px solid #f39c12;
}

.secret-entry h5 {
    color: #f1c40f;
}

.example-box {
    background: #f0f4f8;
    border-left: 4px solid #3498db;
    padding: 15px 20px;
    border-radius: 4px;
    margin: 20px 0;
}

.flavor-box {
    background: #f4e4d7;
    border-left: 4px solid #8b7355;
    padding: 15px 20px;
    border-radius: 4px;
    margin: 20px 0;
}