:root {
    /* Färgvariabler */
    --primary-color: #4361ee;
    --secondary-color: #3f37c9;
    --accent-color: #4895ef;
    --success-color: #4cc9f0;
    --warning-color: #f8961e;
    --danger-color: #f72585;
    
    /* Grundfärger - ljust läge */
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --gray-color: #6c757d;
    
    /* Designvariabler */
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

[data-theme="dark"] {
    --light-color: #1a1a1a;
    --dark-color: #f0f0f0;
    --gray-color: #b0b0b0;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

/* Basstilar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
    transition: var(--transition);
}

/* Layout */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 0;
    box-shadow: var(--box-shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Navigering */
nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

nav a.active {
    font-weight: 600;
}

nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: white;
}

/* Temaväxlare */
#theme-toggle {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

#theme-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Huvudinnehåll */
.tab-content {
    display: none;
    padding: 2rem 0;
}

.tab-content.active {
    display: block;
}

.hero {
    text-align: center;
    padding: 3rem 0;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--gray-color);
}

/* Knappar */
.btn, .btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover, .btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--gray-color);
    color: white;
}

.btn-secondary:hover {
    background-color: #5a6268;
}

/* Verktygskort */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.full-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.tool-card {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.tool-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.tool-card h4 {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.tool-card p {
    color: var(--gray-color);
    font-size: 0.9rem;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 1.5rem 0;
    text-align: center;
    margin-top: 3rem;
}

footer a {
    color: var(--accent-color);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Cookie Policy Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--light-color);
    color: var(--dark-color);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border: 1px solid var(--gray-color);
    max-width: 400px;
    z-index: 1000;
    display: none;
}

.cookie-popup.show {
    display: block;
    animation: slideInUp 0.5s ease;
}

.cookie-content h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.cookie-content p {
    margin-bottom: 15px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.cookie-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    margin-left: auto;
}

.cookie-link:hover {
    text-decoration: underline;
}

.cookie-policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.cookie-policy-content h3 {
    margin-top: 1.5rem;
    color: var(--primary-color);
}

.cookie-policy-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.cookie-note {
    font-size: 0.9rem;
    color: var(--gray-color);
    font-style: italic;
    margin-top: 0.5rem;
}

@keyframes slideInUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    overflow-y: auto;
}

.modal-content {
    background-color: var(--light-color);
    margin: 2rem auto;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    max-width: 800px;
    width: 90%;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--gray-color);
}

/* Formulär */
.tool-form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    display: flex;
    align-items: center;
}

.form-control {
    padding: 0.8rem;
    background-color: var(--light-color);
    color: var(--dark-color);
    border: 1px solid var(--gray-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(67, 97, 238, 0.2);
}

/* Resultat */
.result-container {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background-color: rgba(67, 97, 238, 0.1);
    border-radius: var(--border-radius);
    display: none;
    border: 1px solid rgba(67, 97, 238, 0.2);
}

.result-container.show {
    display: block;
}

.result-title {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.result-value {
    font-size: 1.2rem;
    font-weight: 600;
    word-break: break-all;
}

.copy-btn {
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.copy-btn:hover {
    background-color: #3a7bc8;
}

/* Lösenordskontroll */
.password-container {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.strength-meter {
    height: 6px;
    background-color: #eee;
    border-radius: 3px;
    margin: 10px 0 20px;
    overflow: hidden;
}

.strength-meter-fill {
    height: 100%;
    width: 0%;
    background: red;
    transition: width 0.3s, background 0.3s;
}

.criteria-item {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.criteria-check {
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #eee;
    margin-right: 10px;
}

.criteria-check.valid {
    background: var(--success-color);
}

/* Dropdown-meny */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--light-color);
    min-width: 600px;
    box-shadow: var(--box-shadow);
    z-index: 1;
    border-radius: var(--border-radius);
    padding: 15px;
    left: 50%;
    transform: translateX(-50%);
}

.dropdown:hover .dropdown-content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.dropdown-column {
    padding: 0 10px;
}

.dropdown-column h4 {
    color: var(--primary-color);
    margin: 10px 0;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--gray-color);
}

.dropdown-column a {
    display: block;
    color: var(--dark-color);
    padding: 8px 0;
    text-decoration: none;
    transition: color 0.3s;
}

.dropdown-column a:hover {
    color: var(--primary-color);
}

/* Stegindikatorer */
.step-indicator {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
    margin-right: 8px;
}

/* HEIC-konverterare */
.heic-converter-container {
    max-width: 800px;
    margin: 0 auto;
}

.drop-zone {
    border: 3px dashed var(--primary-color);
    border-radius: var(--border-radius);
    padding: 40px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: var(--light-color);
    color: var(--dark-color);
}

.drop-zone:hover, .drop-zone.highlight {
    background-color: rgba(67, 97, 238, 0.1);
    transform: scale(1.02);
}

#fileInput {
    display: none;
}

#thumbnailContainer {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.thumbnail-item {
    position: relative;
    width: 100px;
    height: 100px;
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.status-message {
    margin-top: 20px;
    font-style: italic;
    text-align: center;
    color: var(--dark-color);
}

.button-group {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 10px;
}

.download-button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 16px;
    font-size: 14px;
    cursor: pointer;
    border-radius: var(--border-radius);
    transition: background-color 0.3s;
    flex: 1;
    max-width: 150px;
}

.download-button:hover {
    background-color: var(--secondary-color);
}

/* Bildfilter */
.image-filter-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

#image-preview {
    max-width: 100%;
    max-height: 60vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: var(--border-radius);
    display: block;
    margin: 0 auto;
}

.preview-container {
    max-width: 100%;
    overflow: hidden;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.05);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-top: 20px;
}

.controls {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    background-color: var(--light-color);
    padding: 15px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.filter-control {
    display: flex;
    flex-direction: column;
    min-width: 150px;
}

/* Privacy Policy Styles */
.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.privacy-content h1 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.last-updated {
    color: var(--gray-color);
    font-style: italic;
    margin-bottom: 2rem;
}

.privacy-content h2 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--gray-color);
}

.privacy-content h3 {
    color: var(--dark-color);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.privacy-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.privacy-content li {
    margin-bottom: 0.5rem;
}

.cookie-actions {
    background-color: rgba(67, 97, 238, 0.1);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
    border-left: 4px solid var(--primary-color);
}

.privacy-content a {
    color: var(--primary-color);
    text-decoration: none;
}

.privacy-content a:hover {
    text-decoration: underline;
}

/* About page styles */
.about-page {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.about-page h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-page h3 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.about-page ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.about-page li {
    margin-bottom: 0.5rem;
}

/* Tool page grid for results */
.result-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

/* Länk-kort stil */
a.tool-card {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* Aktiva länk-stilar */
nav a.active {
    font-weight: 600;
    position: relative;
}

nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: white;
}

/* BMI Calculator Styles */
.bmi-calculator-container {
    max-width: 800px;
    margin: 0 auto;
}

.bmi-calculator-form {
    background-color: rgba(67, 97, 238, 0.05);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    border: 1px solid rgba(67, 97, 238, 0.1);
}

.bmi-input-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.bmi-input-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.bmi-value-btn {
    flex: 1;
    padding: 8px 10px;
    background-color: var(--light-color);
    border: 1px solid var(--gray-color);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.3s;
    font-weight: bold;
}

.bmi-value-btn:hover {
    background-color: rgba(67, 97, 238, 0.1);
    border-color: var(--primary-color);
}

.bmi-action-buttons {
    display: flex;
    gap: 1rem;
}

.bmi-result-container {
    display: none;
    margin-bottom: 2rem;
}

.bmi-result-container.show {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

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

.bmi-result-header {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: rgba(67, 97, 238, 0.05);
    border-radius: var(--border-radius);
    border: 1px solid rgba(67, 97, 238, 0.1);
}

.bmi-result-header h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.bmi-value-container {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.bmi-display-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.bmi-unit {
    font-size: 1.2rem;
    color: var(--gray-color);
}

.bmi-category {
    font-size: 1.5rem;
    font-weight: 600;
}

.bmi-scale {
    margin-bottom: 2rem;
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.bmi-scale-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.bmi-scale-bar-container {
    position: relative;
    height: 30px;
    margin-bottom: 0.5rem;
}

.bmi-scale-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: linear-gradient(to right, 
        #ff6b6b 0%, #ff6b6b 14%, 
        #51cf66 14%, #51cf66 39.6%, 
        #ffd43b 39.6%, #ffd43b 59.2%, 
        #ff922b 59.2%, #ff922b 100%);
    border-radius: 10px;
}

.bmi-marker {
    position: absolute;
    top: -5px;
    width: 20px;
    height: 30px;
    background-color: #333;
    border-radius: 10px 10px 0 0;
    transform: translateX(-50%);
    display: none;
    z-index: 10;
}

.bmi-marker::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #333;
}

.bmi-scale-values {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--gray-color);
}

.bmi-scale-values span {
    text-align: center;
    flex: 1;
}

.bmi-interpretation {
    background-color: rgba(67, 97, 238, 0.05);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.bmi-interpretation h4 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.bmi-interpretation-text {
    line-height: 1.6;
}

.bmi-info-section {
    background-color: rgba(0, 0, 0, 0.03);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-top: 2rem;
}

.bmi-info-section h3 {
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.bmi-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.bmi-info-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.bmi-info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.bmi-info-item h4 {
    margin: 0;
    color: var(--dark-color);
}

.bmi-info-item p {
    margin: 0;
    color: var(--gray-color);
    font-size: 0.9rem;
}

.bmi-info-item code {
    background-color: rgba(0, 0, 0, 0.1);
    padding: 0.3rem 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
}

.bmi-table-container {
    overflow-x: auto;
}

.bmi-table-container h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.bmi-reference-table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.bmi-reference-table th,
.bmi-reference-table td {
    padding: 0.8rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.bmi-reference-table th {
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
}

.bmi-reference-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.bmi-reference-table tr:hover {
    background-color: #f0f0f0;
}

/* Dark theme adjustments */
[data-theme="dark"] {
    .password-container,
    .controls,
    .preview-container,
    .dropdown-content,
    .result-item {
        border-color: #444;
    }

    .strength-meter {
        background-color: #444;
    }

    input[type="range"],
    input[type="color"] {
        background-color: #444;
    }

    .dropdown-column h4 {
        border-bottom-color: #444;
    }

    .preview-container {
        background-color: rgba(255, 255, 255, 0.05);
    }
    
    .drop-zone {
        border-color: var(--accent-color);
    }
    
    .download-button {
        background-color: var(--accent-color);
    }
    
    .download-button:hover {
        background-color: #3a7bc8;
    }
    
    .cookie-popup {
        background-color: #2d3748;
        border-color: #4a5568;
    }

    .privacy-content h1,
    .privacy-content h2,
    .privacy-content h3 {
        color: var(--accent-color);
    }

    .privacy-content h1 {
        border-bottom-color: var(--accent-color);
    }

    .cookie-actions {
        background-color: rgba(67, 97, 238, 0.2);
        border-left-color: var(--accent-color);
    }

    /* BMI Dark theme */
    .bmi-scale,
    .bmi-reference-table {
        background-color: rgba(255, 255, 255, 0.05);
    }

    .bmi-reference-table th {
        background-color: var(--primary-color);
    }

    .bmi-reference-table tr:nth-child(even) {
        background-color: rgba(255, 255, 255, 0.02);
    }

    .bmi-reference-table tr:hover {
        background-color: rgba(255, 255, 255, 0.05);
    }

    .bmi-reference-table td {
        border-bottom-color: rgba(255, 255, 255, 0.1);
    }

    .bmi-info-section {
        background-color: rgba(255, 255, 255, 0.05);
    }

    .bmi-calculator-form,
    .bmi-result-header,
    .bmi-interpretation {
        background-color: rgba(67, 97, 238, 0.1);
        border-color: rgba(67, 97, 238, 0.2);
    }
}

/* Responsive design */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 1rem;
    }

    nav ul {
        gap: 1rem;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .tools-grid {
        grid-template-columns: 1fr;
    }

    .dropdown-content {
        min-width: 300px;
        grid-template-columns: 1fr;
    }
    
    .controls {
        flex-direction: column;
    }
    
    .filter-control {
        min-width: 100%;
    }
    
    .cookie-popup {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-buttons button {
        width: 100%;
    }
    
    .cookie-link {
        margin-left: 0;
        margin-top: 10px;
        text-align: center;
    }

    /* BMI Responsive */
    .bmi-input-section {
        grid-template-columns: 1fr;
    }
    
    .bmi-action-buttons {
        flex-direction: column;
    }
    
    .bmi-info-grid {
        grid-template-columns: 1fr;
    }
    
    .bmi-table-container {
        font-size: 0.9rem;
    }
    
    .bmi-reference-table th,
    .bmi-reference-table td {
        padding: 0.5rem;
    }
    
    .bmi-display-value {
        font-size: 2.5rem;
    }
    
    .bmi-category {
        font-size: 1.2rem;
    }
    
    .bmi-scale-labels span {
        font-size: 0.8rem;
    }
    
    .bmi-scale-values span {
        font-size: 0.7rem;
    }
}