/* ============ CSS VARIABLER ============ */
:root {
    --warm-cream: #FDF8F3;
    --soft-pink: #F5E6E0;
    --deep-brown: #5D4E37;
    --accent-coral: #E8A598;
    --light-brown: #8B7355;
    --success-green: #6B8E6B;
    --danger-red: #dc3545;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--warm-cream);
    color: var(--deep-brown);
    min-height: 100vh;
    padding-bottom: 80px;
}

/* ============ HEADER ============ */
.app-header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    padding: 15px 20px;
    margin-bottom: 20px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.app-header h1 {
    font-size: 1.5rem;
    margin: 0;
}

.user-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-status {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--accent-coral);
}

.lang-btn {
    background: var(--soft-pink);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lang-btn:hover {
    background: var(--accent-coral);
}

/* ============ CONTAINER ============ */
.container {
    max-width: 98vw;
    margin: 0 auto;
    padding: 0 20px;
}

.subtitle {
    text-align: center;
    color: var(--light-brown);
    margin-bottom: 20px;
}

/* ============ BUTTONS ============ */
.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-small {
    padding: 6px 12px;
    font-size: 0.85rem;
}

.btn-primary {
    background: var(--accent-coral);
    color: white;
}

.btn-primary:hover {
    background: #d9968a;
    transform: translateY(-1px);
}

.btn-secondary {
    background: var(--soft-pink);
    color: var(--deep-brown);
}

.btn-secondary:hover {
    background: #edd9d2;
}

.btn-success {
    background: var(--success-green);
    color: white;
}

.btn-success:hover {
    background: #5a7a5a;
}

.btn-share {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-share:hover {
    opacity: 0.9;
}

.btn-google {
    background: white;
    color: var(--deep-brown);
    border: 2px solid var(--soft-pink);
    width: 100%;
    padding: 12px;
}

.btn-google:hover {
    background: var(--warm-cream);
}

.btn-danger {
    background: var(--danger-red);
    color: white;
}

.btn-danger:hover {
    background: #c82333;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ============ SETUP PANEL ============ */
.setup-panel {
    background: white;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.setup-row {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.setup-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.setup-group label {
    font-weight: 600;
    color: var(--deep-brown);
}

.size-input {
    width: 70px;
    padding: 8px 12px;
    border: 2px solid var(--soft-pink);
    border-radius: 8px;
    font-size: 1rem;
    text-align: center;
}

.size-input:focus {
    outline: none;
    border-color: var(--accent-coral);
}

/* ============ WORKSPACE ============ */
.workspace {
    display: none;
}

.workspace.active {
    display: block;
}

/* ============ PALETTE ============ */
.palette-container {
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    margin-bottom: 20px;
}

.palette-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.palette-title {
    font-weight: 600;
    font-size: 1.1rem;
}

.current-color {
    display: flex;
    align-items: center;
    gap: 10px;
}

.current-color-preview {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 3px solid var(--deep-brown);
}

.current-color-name {
    font-weight: 600;
}

.color-palette {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(40px, 1fr));
    gap: 6px;
}

.color-swatch {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    border: 2px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: bold;
    color: white;
    text-shadow: 0 0 2px rgba(0,0,0,0.5);
}

.color-swatch:hover {
    transform: scale(1.15);
    z-index: 1;
}

.color-swatch.selected {
    border-color: var(--deep-brown);
    box-shadow: 0 0 0 3px var(--accent-coral);
}

.color-swatch.light-color {
    color: var(--deep-brown);
    text-shadow: none;
}

/* ============ TOOLS ============ */
.tools-container {
    background: white;
    border-radius: 16px;
    padding: 15px 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    margin-bottom: 15px;
}

.tools-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.tool-btn {
    padding: 8px 14px;
    border: 2px solid var(--soft-pink);
    border-radius: 8px;
    background: white;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.tool-btn:hover {
    background: var(--soft-pink);
}

.tool-btn.active {
    background: var(--accent-coral);
    color: white;
    border-color: var(--accent-coral);
}

/* ============ CANVAS ============ */
.canvas-container {
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    overflow: auto;
    max-height: 75vh;
    max-width: 100%;
    margin-bottom: 20px;
}

.artwork-name-container {
    margin-bottom: 15px;
}

.artwork-name-input {
    width: 100%;
    max-width: 300px;
    padding: 10px 15px;
    border: 2px solid var(--soft-pink);
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--deep-brown);
}

.artwork-name-input:focus {
    outline: none;
    border-color: var(--accent-coral);
}

.grid-wrapper {
    display: inline-flex;
    align-items: flex-start;
}

.grid-with-labels {
    display: flex;
    flex-direction: column;
}

.column-labels {
    display: grid;
    gap: 1px;
    margin-bottom: 1px;
}

.column-label {
    text-align: center;
    font-size: 8px;
    color: var(--light-brown);
    height: 14px;
    line-height: 14px;
}

.row-labels {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.row-labels.with-top-labels {
    margin-top: 15px;
}

.row-labels.left {
    padding-right: 3px;
}

.row-labels.right {
    padding-left: 3px;
}

.row-label {
    height: 20px;
    display: flex;
    align-items: center;
    font-size: 9px;
    font-weight: bold;
    color: var(--light-brown);
    min-width: 28px;
}

.row-labels.left .row-label {
    justify-content: flex-end;
}

.row-label.odd {
    color: var(--accent-coral);
}

.row-label .direction {
    font-size: 8px;
    margin: 0 2px;
}

.pixel-grid {
    display: inline-grid;
    gap: 1px;
    background: #999; /* Mørkere grid-linjer for bedre synlighed */
    border: 2px solid var(--deep-brown);
    border-radius: 4px;
    contain: layout paint; /* Mindre restriktiv end strict - tillader auto-sizing */
}

.pixel {
    width: 20px;
    height: 20px;
    background: white;
    cursor: pointer;
    /* Fjernet transition for bedre performance ved store grids */
}

.pixel:hover {
    opacity: 0.8;
}

/* ============ STATS ============ */
.stats-container {
    background: var(--soft-pink);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 15px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--deep-brown);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--light-brown);
}

.color-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.color-count {
    display: flex;
    align-items: center;
    gap: 6px;
    background: white;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 0.85rem;
}

.color-count-swatch {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 1px solid #ddd;
}

/* ============ RESIZE ============ */
.resize-container {
    background: white;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.resize-title {
    font-weight: 600;
    margin-bottom: 10px;
}

.resize-controls {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.resize-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.resize-group label {
    font-size: 0.9rem;
    color: var(--light-brown);
}

/* ============ ACTIONS ============ */
.action-buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

/* ============ RECIPE ============ */
.recipe-container {
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    display: none;
    margin-top: 20px;
}

.recipe-container.active {
    display: block;
}

.recipe-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.recipe-title {
    font-weight: 600;
    font-size: 1.1rem;
}

.recipe-actions {
    display: flex;
    gap: 8px;
}

.recipe-content {
    background: var(--warm-cream);
    border-radius: 8px;
    padding: 15px;
    max-height: 400px;
    overflow-y: auto;
}

.recipe-row {
    margin-bottom: 6px;
    padding: 8px 12px;
    background: white;
    border-radius: 6px;
    font-family: monospace;
    font-size: 0.9rem;
}

.recipe-row .row-num {
    font-weight: bold;
    color: var(--accent-coral);
}

/* ============ MODALS ============ */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 16px;
    padding: 25px;
    max-width: 450px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.modal-title {
    font-size: 1.2rem;
    font-weight: 600;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--light-brown);
    padding: 5px;
    line-height: 1;
}

.modal-close:hover {
    color: var(--deep-brown);
}

/* ============ AUTH MODAL ============ */
.auth-modal {
    text-align: center;
}

.auth-description {
    color: var(--light-brown);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.auth-divider {
    display: flex;
    align-items: center;
    margin: 20px 0;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--soft-pink);
}

.auth-divider span {
    padding: 0 15px;
    color: var(--light-brown);
    font-size: 0.9rem;
}

.auth-input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--soft-pink);
    border-radius: 10px;
    font-size: 1rem;
    margin-bottom: 12px;
}

.auth-input:focus {
    outline: none;
    border-color: var(--accent-coral);
}

.auth-toggle {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--light-brown);
}

.auth-toggle a {
    color: var(--accent-coral);
    text-decoration: none;
    font-weight: 600;
}

/* ============ IMPORT MODAL ============ */
.import-section {
    margin-bottom: 15px;
}

.import-section-label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
}

.import-code-row {
    display: flex;
    gap: 10px;
}

.share-code-input {
    flex: 1;
    padding: 12px;
    border: 2px solid var(--soft-pink);
    border-radius: 10px;
    font-size: 1.3rem;
    text-align: center;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-family: 'SF Mono', 'Consolas', monospace;
}

.share-code-input:focus {
    outline: none;
    border-color: var(--accent-coral);
}

.import-divider {
    display: flex;
    align-items: center;
    margin: 20px 0;
}

.import-divider::before,
.import-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--soft-pink);
}

.import-divider span {
    padding: 0 15px;
    color: var(--light-brown);
}

.import-textarea {
    width: 100%;
    height: 150px;
    padding: 12px;
    border: 2px solid var(--soft-pink);
    border-radius: 10px;
    font-family: monospace;
    font-size: 0.9rem;
    resize: vertical;
}

.import-textarea:focus {
    outline: none;
    border-color: var(--accent-coral);
}

/* ============ SHARE MODAL ============ */
.share-code-display-container {
    background: var(--warm-cream);
    border-radius: 12px;
    padding: 20px;
    margin: 15px 0;
}

.share-code-display {
    font-size: 2.5rem;
    font-weight: bold;
    letter-spacing: 8px;
    color: var(--deep-brown);
    font-family: 'SF Mono', 'Consolas', monospace;
}

.pattern-count-info {
    font-size: 0.85rem;
    color: var(--light-brown);
    margin-bottom: 15px;
    padding: 10px;
    background: var(--warm-cream);
    border-radius: 8px;
}

/* ============ MY PATTERNS MODAL ============ */
.patterns-modal {
    max-width: 550px;
}

.patterns-info {
    font-size: 0.9rem;
    color: var(--light-brown);
    margin-bottom: 15px;
    padding: 10px;
    background: var(--warm-cream);
    border-radius: 8px;
}

.patterns-list {
    max-height: 400px;
    overflow-y: auto;
}

.loading-patterns {
    text-align: center;
    padding: 30px;
    color: var(--light-brown);
}

.pattern-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    background: var(--warm-cream);
    border-radius: 10px;
    margin-bottom: 10px;
}

.pattern-preview {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    border: 2px solid var(--soft-pink);
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--light-brown);
    overflow: hidden;
}

.pattern-preview canvas {
    max-width: 100%;
    max-height: 100%;
}

.pattern-info {
    flex: 1;
}

.pattern-name {
    font-weight: 600;
    margin-bottom: 4px;
}

.pattern-meta {
    font-size: 0.85rem;
    color: var(--light-brown);
}

.pattern-code {
    font-family: monospace;
    background: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.85rem;
}

.pattern-actions {
    display: flex;
    gap: 8px;
}

.no-patterns {
    text-align: center;
    padding: 30px;
    color: var(--light-brown);
}

/* ============ PREVIEW MODAL ============ */
.preview-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    padding: 20px;
    flex-direction: column;
}

.preview-modal.active {
    display: flex;
}

.preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 90vw;
    margin-bottom: 15px;
}

.preview-title {
    color: white;
    font-size: 1.1rem;
}

.preview-close {
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preview-canvas-container {
    background: white;
    padding: 10px;
    border-radius: 8px;
    max-width: 90vw;
    max-height: 70vh;
    overflow: auto;
}

.preview-controls {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.preview-zoom-btn {
    padding: 10px 16px;
    border: none;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
}

.preview-checkbox {
    display: flex;
    align-items: center;
    gap: 5px;
    background: white;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
}

/* ============ FLOATING PALETTE (MOBILE) ============ */
/* ============ FLOATING TOOLBAR ============ */
.floating-toolbar {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.floating-tool-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--soft-pink);
    border: 2px solid var(--deep-brown);
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.15s, background 0.15s;
}

.floating-tool-btn:hover {
    transform: scale(1.1);
    background: var(--dusty-rose);
}

.floating-tool-btn.active {
    background: var(--sage-green);
    border-color: var(--deep-brown);
}

.floating-tool-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.floating-tool-btn:disabled:hover {
    transform: none;
}

.floating-tool-btn .tool-icon {
    font-size: 1.4rem;
}

.floating-tool-btn .current-color-dot {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.floating-undo-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--accent-coral);
    color: white;
    font-size: 0.65rem;
    font-weight: bold;
    padding: 2px 5px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
}

.floating-palette-modal {
    position: fixed;
    bottom: 230px;
    right: 20px;
    background: white;
    border-radius: 16px;
    padding: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    border: 2px solid var(--dusty-rose);
    z-index: 1002;
    display: none;
    max-width: 280px;
    max-height: 60vh;
    overflow-y: auto;
}

.floating-palette-modal.active {
    display: block;
}

.floating-color-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 6px;
}

.floating-color-swatch {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    cursor: pointer;
    border: 2px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.55rem;
    font-weight: bold;
    color: white;
    text-shadow: 0 0 2px rgba(0,0,0,0.5);
}

.floating-color-swatch.selected {
    border-color: var(--deep-brown);
    box-shadow: 0 0 0 2px var(--accent-coral);
}

.floating-color-swatch.light-color {
    color: var(--deep-brown);
    text-shadow: none;
}

.section-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--light-brown);
    margin: 10px 0 8px 0;
}

.section-title:first-child {
    margin-top: 0;
}

.floating-tools {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.floating-tool-btn {
    padding: 8px 12px;
    border: 2px solid var(--soft-pink);
    border-radius: 8px;
    background: white;
    cursor: pointer;
    font-size: 0.85rem;
}

.floating-tool-btn.active {
    background: var(--accent-coral);
    color: white;
    border-color: var(--accent-coral);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
    .palette-container {
        display: none;
    }
    
    .floating-palette-btn {
        display: flex !important;
    }
    
    .header-content h1 {
        font-size: 1.2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .pixel {
        width: 16px;
        height: 16px;
    }
}

/* Floating toolbar vises på alle skærmstørrelser for at hjælpe med store grids */

@media (max-width: 500px) {
    .setup-row {
        flex-direction: column;
        align-items: stretch;
    }
    
    .setup-group {
        width: 100%;
        justify-content: space-between;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .action-buttons .btn {
        width: 100%;
    }
}
/* ============================================================
   TILFØJ TIL drawer-styles.css
   ============================================================
   Indsæt nederst i drawer-styles.css filen.
   ============================================================ */

/* Community badges på pattern items */
.community-badge {
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 4px;
    display: inline-block;
    margin-top: 4px;
    font-weight: 500;
}

.badge-pending {
    background: #fff3cd;
    color: #856404;
}

.badge-approved {
    background: #d4f0e0;
    color: #155724;
}

.badge-rejected {
    background: #f8d7da;
    color: #721c24;
}

/* Pattern item highlights baseret på status */
.pattern-pending {
    border-left: 3px solid #ffc107;
}

.pattern-approved {
    border-left: 3px solid #28a745;
}

.pattern-rejected {
    border-left: 3px solid #dc3545;
}

/* Action button colors for community */
.btn-success {
    background: #d4f0e0 !important;
    color: #155724 !important;
    border: 1px solid #28a745 !important;
}

.btn-success:hover {
    background: #28a745 !important;
    color: white !important;
}

.btn-warning {
    background: #fff3cd !important;
    color: #856404 !important;
    border: 1px solid #ffc107 !important;
}

.btn-warning:hover {
    background: #ffc107 !important;
    color: white !important;
}

/* Info button (Update community) */
.btn-info {
    background: #cce5ff !important;
    color: #004085 !important;
    border: 1px solid #007bff !important;
}

.btn-info:hover {
    background: #007bff !important;
    color: white !important;
}

/* Form select matching auth-input style */
select.auth-input {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 36px;
}

textarea.auth-input {
    line-height: 1.5;
}