/* ========================================
   MyPalkkalaskuri.com - 芬兰工资计算器样式
   Mobile-First 响应式设计
   ======================================== */

/* CSS 变量定义 */
:root {
    --primary-color: #0066cc;
    --primary-dark: #004999;
    --secondary-color: #00a86b;
    --accent-color: #ff6b35;
    --text-primary: #1a1a1a;
    --text-secondary: #4a5568;
    --text-light: #718096;
    --bg-primary: #ffffff;
    --bg-secondary: #f7fafc;
    --bg-accent: #edf2f7;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
}

/* 全局重置 */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-secondary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* 排版层级 */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

h1 {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    margin-bottom: var(--spacing-md);
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-top: var(--spacing-lg);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    margin-top: var(--spacing-md);
}

h4 {
    font-size: 1.125rem;
}

h5, h6 {
    font-size: 1rem;
}

p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-secondary);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* 容器 */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* Header */
header {
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) 0;
    min-height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo:hover {
    text-decoration: none;
    opacity: 0.9;
}

.logo-icon {
    width: 36px;
    height: 36px;
    fill: var(--primary-color);
}

/* 导航 */
nav ul {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

nav a {
    color: var(--text-secondary);
    font-weight: 500;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
}

nav a:hover {
    color: var(--primary-color);
    background: var(--bg-accent);
    text-decoration: none;
}

/* 主内容区 */
main {
    min-height: calc(100vh - 200px);
    padding: var(--spacing-lg) 0;
}

/* 面包屑导航 */
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
}

.breadcrumb a {
    color: var(--text-light);
}

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

.breadcrumb-separator {
    margin: 0 var(--spacing-xs);
}

/* 计算器容器 */
.calculator-wrapper {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.calculator-intro {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
    border-bottom: 2px solid var(--bg-accent);
}

.calculator-intro p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto var(--spacing-md);
}

/* 计算器表单 */
.calculator-form {
    max-width: 600px;
    margin: 0 auto var(--spacing-xl);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

label {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
    font-size: 0.9375rem;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

input[type="number"],
input[type="text"],
select {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: all 0.2s ease;
    -webkit-appearance: none;
    appearance: none;
}

input[type="number"]:focus,
input[type="text"]:focus,
select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.input-suffix {
    position: absolute;
    right: 1rem;
    color: var(--text-light);
    font-weight: 600;
    pointer-events: none;
}

.form-hint {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: var(--spacing-xs);
}

/* 按钮 */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    line-height: 1.5;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
    text-decoration: none;
    color: white;
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-block {
    width: 100%;
}

.btn-secondary {
    background: var(--bg-accent);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: var(--border-color);
}

/* 结果显示 */
.result-container {
    display: none;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    margin-top: var(--spacing-xl);
    box-shadow: var(--shadow-lg);
}

.result-container.show {
    display: block;
    animation: slideIn 0.3s ease;
}

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

.result-main {
    text-align: center;
    padding: var(--spacing-lg) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: var(--spacing-lg);
}

.result-label {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: var(--spacing-xs);
}

.result-value {
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 700;
    margin: var(--spacing-sm) 0;
}

.result-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
}

.result-item {
    background: rgba(255, 255, 255, 0.1);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
}

.result-item-label {
    font-size: 0.875rem;
    opacity: 0.9;
    margin-bottom: var(--spacing-xs);
}

.result-item-value {
    font-size: 1.5rem;
    font-weight: 700;
}

/* 内容区块 */
.content-section {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
}

.content-section h2 {
    margin-top: 0;
    padding-bottom: var(--spacing-sm);
    border-bottom: 3px solid var(--primary-color);
}

.content-section ul,
.content-section ol {
    margin-left: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.content-section li {
    margin-bottom: var(--spacing-xs);
    color: var(--text-secondary);
}

/* FAQ 区块 */
.faq-section {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    padding: var(--spacing-md) 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
    font-size: 1.0625rem;
}

.faq-answer {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* 相关工具 */
.related-tools {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.tool-card {
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    transition: all 0.2s ease;
    display: block;
}

.tool-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    text-decoration: none;
}

.tool-card h3 {
    color: var(--primary-color);
    font-size: 1.125rem;
    margin: 0 0 var(--spacing-xs);
}

.tool-card p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    margin: 0;
}

/* Footer */
footer {
    background: var(--text-primary);
    color: rgba(255, 255, 255, 0.8);
    padding: var(--spacing-xl) 0 var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-section h3 {
    color: white;
    font-size: 1.125rem;
    margin-bottom: var(--spacing-md);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: var(--spacing-xs);
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.2s ease;
}

.footer-section a:hover {
    color: white;
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
}

/* 分享按钮 */
.share-buttons {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    text-decoration: none;
}

.share-btn-facebook {
    background: #1877f2;
    color: white;
}

.share-btn-twitter {
    background: #1da1f2;
    color: white;
}

.share-btn-linkedin {
    background: #0077b5;
    color: white;
}

.share-btn-copy {
    background: var(--bg-accent);
    color: var(--text-primary);
}

/* 广告位预留 */
.ad-placeholder {
    background: var(--bg-accent);
    border: 2px dashed var(--border-color);
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    text-align: center;
    margin: var(--spacing-lg) 0;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

/* 响应式表格 */
.table-responsive {
    overflow-x: auto;
    margin: var(--spacing-md) 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-primary);
}

th, td {
    padding: var(--spacing-sm);
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

th {
    background: var(--bg-accent);
    font-weight: 600;
    color: var(--text-primary);
}

/* 404 页面 */
.error-page {
    text-align: center;
    padding: var(--spacing-xl) 0;
}

.error-code {
    font-size: clamp(4rem, 15vw, 8rem);
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: var(--spacing-md);
}

.error-message {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
}

/* 移动端优化 */
@media (max-width: 768px) {
    :root {
        --spacing-lg: 1.5rem;
        --spacing-xl: 2rem;
    }

    .header-content {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    nav ul {
        gap: var(--spacing-sm);
        justify-content: center;
    }

    .calculator-wrapper {
        padding: var(--spacing-md);
    }

    .result-details {
        grid-template-columns: 1fr;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .container {
        padding: 0 var(--spacing-xs);
    }

    nav a {
        padding: var(--spacing-xs);
        font-size: 0.875rem;
    }
}

/* 辅助类 */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.hidden { display: none; }

/* 加载动画 */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* 提示信息 */
.alert {
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
}

.alert-info {
    background: #e6f7ff;
    border: 1px solid #91d5ff;
    color: #096dd9;
}

/* ========================================
   Cookies Consent Banner (GDPR)
   ======================================== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-primary);
    color: white;
    padding: var(--spacing-md);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.cookie-consent-text {
    flex: 1;
    min-width: 250px;
}

.cookie-consent-text p {
    color: rgba(255,255,255,0.9);
    margin: 0;
    font-size: 0.9rem;
}

.cookie-consent-text a {
    color: #91d5ff;
    text-decoration: underline;
}

.cookie-consent-text a:hover {
    color: #fff;
}

.cookie-consent-buttons {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.cookie-consent-btn {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.cookie-consent-accept {
    background: var(--primary-color);
    color: white;
}

.cookie-consent-accept:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.cookie-consent-decline {
    background: transparent;
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
}

.cookie-consent-decline:hover {
    background: rgba(255,255,255,0.1);
}

@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cookie-consent-buttons {
        width: 100%;
    }
    
    .cookie-consent-btn {
        flex: 1;
        justify-content: center;
    }
}

/* ========================================
   Content Page Styles
   ======================================== */
.content-page {
    background: var(--bg-primary);
    padding: var(--spacing-xl);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    margin-bottom: var(--spacing-lg);
}

.content-page h1 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.content-page h2 {
    color: var(--text-primary);
    padding-top: var(--spacing-md);
    border-bottom: 2px solid var(--border-color);
    padding-bottom: var(--spacing-xs);
}

.content-page h3 {
    color: var(--text-secondary);
}

.content-page .lead {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
}

.content-page ul, .content-page ol {
    margin-left: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.content-page li {
    margin-bottom: var(--spacing-xs);
    color: var(--text-secondary);
}

.cta-box {
    background: var(--bg-accent);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    text-align: center;
    margin-top: var(--spacing-xl);
    border: 2px solid var(--primary-color);
}

.cta-box h3 {
    margin-bottom: var(--spacing-sm);
}

.contact-reasons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    margin: var(--spacing-lg) 0;
}

.reason-box {
    background: var(--bg-accent);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    text-align: center;
}

.reason-box h3 {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-xs);
}

.email-link {
    font-size: 1.125rem;
    font-weight: 600;
}

/* User Testimonials */
.user-feedback {
    margin: var(--spacing-xl) 0;
    padding: var(--spacing-xl) 0;
    border-top: 2px solid var(--border-color);
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.testimonial {
    background: var(--bg-primary);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary-color);
}

.testimonial p {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
}

.testimonial cite {
    display: block;
    text-align: right;
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: normal;
}

.testimonial-rating {
    color: #ffa500;
    font-size: 1.2rem;
    margin-bottom: var(--spacing-xs);
}

@media (max-width: 768px) {
    .content-page {
        padding: var(--spacing-md);
    }
    
    .contact-reasons {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Table Styles
   ======================================== */
.table-responsive {
    overflow-x: auto;
    margin: var(--spacing-lg) 0;
}

.tax-comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-primary);
    box-shadow: var(--shadow-sm);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.tax-comparison-table thead {
    background: var(--primary-color);
    color: white;
}

.tax-comparison-table th,
.tax-comparison-table td {
    padding: var(--spacing-sm) var(--spacing-md);
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.tax-comparison-table th {
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tax-comparison-table tbody tr:hover {
    background: var(--bg-accent);
}

.tax-comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.tax-comparison-table td:nth-child(4) {
    font-weight: 600;
    color: var(--primary-color);
}

/* Use Cases Grid */
.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.use-case-card {
    background: var(--bg-primary);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--primary-color);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.use-case-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.use-case-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.use-case-card h3 {
    color: var(--text-primary);
    font-size: 1.125rem;
    margin-bottom: var(--spacing-sm);
}

.use-case-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Data Sources Section */
.data-sources ul {
    list-style: none;
    margin-left: 0;
}

.data-sources li {
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid var(--border-color);
}

.data-sources li:last-child {
    border-bottom: none;
}

.note {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: var(--spacing-md);
    border-radius: var(--radius-sm);
    margin-top: var(--spacing-md);
}

.update-info {
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: italic;
    margin-top: var(--spacing-md);
}

@media (max-width: 768px) {
    .tax-comparison-table {
        font-size: 0.85rem;
    }
    
    .tax-comparison-table th,
    .tax-comparison-table td {
        padding: var(--spacing-xs) var(--spacing-sm);
    }
    
    .use-cases-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Calculation Mode Switcher
   ======================================== */
.calc-mode-switcher {
    display: flex;
    gap: 0;
    margin-bottom: var(--spacing-lg);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.mode-btn {
    flex: 1;
    padding: var(--spacing-md);
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    color: var(--text-secondary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.mode-btn:hover {
    background: var(--bg-accent);
}

.mode-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.mode-btn:first-child {
    border-right: none;
}

/* Export Buttons */
.export-buttons {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--bg-accent);
    border-radius: var(--radius-md);
}

.export-buttons .btn {
    flex: 1;
}

.btn-success {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-success:hover {
    background: #008c5a;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .calc-mode-switcher {
        flex-direction: column;
    }
    
    .mode-btn:first-child {
        border-right: 2px solid var(--border-color);
        border-bottom: none;
    }
    
    .export-buttons {
        flex-direction: column;
    }
}



