/* Shared styles for YP Integrations documentation templates - YouPlan Design System */

/* CSS Variables for YouPlan brand colors */
:root {
    --youplan-primary: hsl(210, 20%, 50%);
    --youplan-primary-dark: hsl(210, 20%, 40%);
    --youplan-primary-light: hsl(210, 20%, 60%);
    --youplan-surface: #FCEFF3;
    --youplan-surface-dark: #2A1A27;
    --youplan-text: hsl(331, 39%, 11%);
    --youplan-text-muted: hsl(325, 14%, 34%);
    --youplan-bg: rgb(255, 255, 255);
    --youplan-bg-90: #F2F2F2;
    --youplan-border: #e9ecef;
    --youplan-shadow: 0 2px 10px rgba(0,0,0,0.1);
    --youplan-shadow-hover: 0 4px 15px rgba(0,0,0,0.15);
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    :root {
        --youplan-primary: hsl(210, 20%, 60%);
        --youplan-primary-dark: hsl(210, 20%, 50%);
        --youplan-primary-light: hsl(210, 20%, 70%);
        --youplan-surface: #2A1A27;
        --youplan-surface-dark: #1a0f1a;
        --youplan-text: #ffffff;
        --youplan-text-muted: #a0a0a0;
        --youplan-bg: #212121;
        --youplan-bg-90: #373737;
        --youplan-border: #404040;
        --youplan-shadow: 0 2px 10px rgba(0,0,0,0.3);
        --youplan-shadow-hover: 0 4px 15px rgba(0,0,0,0.4);
    }
}

/* Base styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--youplan-text);
    margin: 0 auto;
    padding: 0;
    background-color: var(--youplan-bg-90);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    max-width: 1200px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    background: var(--youplan-bg);
    flex: 1;
    min-height: 0; /* Allows flex item to shrink */
}

/* Container styles */
.content-container {
    background: var(--youplan-bg);
    padding: 40px;
    max-width: 1200px;
    position: relative;
}

/* Header styles */
.header {
    padding: 20px 40px;
    margin-bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    background: var(--youplan-bg);
}

.header-content {
    flex: 1;
    min-width: 0; /* Allows text to wrap properly */
}

.header h1 {
    color: var(--youplan-text);
    margin: 0;
    font-size: 2.5em;
    font-weight: 700;
    letter-spacing: -0.025em;
}

.header p {
    color: var(--youplan-text-muted);
    font-size: 1.1em;
    margin: 10px 0 0 0;
    font-weight: 400;
}

/* Tab styles */
.tabs {
    display: flex;
    border-bottom: 2px solid var(--youplan-border);
    margin-bottom: 30px;
    gap: 0;
}

.tab {
    padding: 15px 25px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: var(--youplan-text-muted);
    border-bottom: 3px solid transparent;
    transition: all 0.2s ease;
    position: relative;
}

.tab:hover {
    color: var(--youplan-primary);
    background-color: var(--youplan-surface);
}

.tab.active {
    color: var(--youplan-primary);
    border-bottom-color: var(--youplan-primary);
    font-weight: 600;
}

.tab-content {
    display: none;
}

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

/* Navigation styles */
.nav {
    margin-bottom: 30px;
    padding: 20px;
    background: var(--youplan-surface);
    border-radius: 8px;
    border: 1px solid var(--youplan-border);
}

.nav h3 {
    margin-top: 0;
    color: var(--youplan-text);
    font-weight: 600;
}

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

.nav li {
    margin: 8px 0;
}

.nav a {
    color: var(--youplan-primary);
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.2s ease;
    display: block;
    font-weight: 500;
}

.nav a:hover {
    background-color: var(--youplan-primary);
    color: white;
    transform: translateY(-1px);
}

/* Content styles */
.content {
    line-height: 1.8;
    color: var(--youplan-text);
}

.content h1, .content h2, .content h3, .content h4, .content h5, .content h6 {
    color: var(--youplan-text);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: -0.025em;
}

.content h1 {
    font-size: 2em;
    border-bottom: 2px solid var(--youplan-border);
    padding-bottom: 10px;
}

.content h2 {
    font-size: 1.5em;
    border-bottom: 1px solid var(--youplan-border);
    padding-bottom: 5px;
}

.content code {
    background-color: var(--youplan-surface);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.9em;
    color: var(--youplan-primary);
}

.content pre {
    background-color: var(--youplan-surface);
    padding: 20px;
    border-radius: 8px;
    overflow-x: auto;
    border: 1px solid var(--youplan-border);
    margin: 20px 0;
}

.content pre code {
    background: none;
    padding: 0;
    color: var(--youplan-text);
}

.content blockquote {
    border-left: 4px solid var(--youplan-primary);
    margin: 20px 0;
    padding: 15px 20px;
    background-color: var(--youplan-surface);
    font-style: italic;
    border-radius: 0 8px 8px 0;
}

/* Enhanced table styles - work for all containers */
table {
    border-collapse: collapse;
    width: 100%;
    margin: 20px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--youplan-shadow);
    background: var(--youplan-bg);
}

th, td {
    border: 1px solid var(--youplan-border);
    padding: 16px 12px;
    text-align: left;
    vertical-align: top;
}

th {
    background: var(--youplan-primary);
    font-weight: 600;
    color: white;
    border-bottom: 2px solid var(--youplan-primary-dark);
}

td {
    background: var(--youplan-bg);
    color: var(--youplan-text);
}

/* Keep existing .content table styles for backward compatibility */
.content table {
    border-collapse: collapse;
    width: 100%;
    margin: 20px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--youplan-shadow);
    background: var(--youplan-bg);
}

.content th, .content td {
    border: 1px solid var(--youplan-border);
    padding: 16px 12px;
    text-align: left;
    vertical-align: top;
}

.content th {
    background: var(--youplan-primary);
    font-weight: 600;
    color: white;
    border-bottom: 2px solid var(--youplan-primary-dark);
}

.content td {
    background: var(--youplan-bg);
    color: var(--youplan-text);
}

.content ul, .content ol {
    padding-left: 20px;
}

.content li {
    margin: 8px 0;
}

/* Form styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--youplan-text);
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--youplan-border);
    border-radius: 8px;
    font-size: 16px;
    box-sizing: border-box;
    transition: all 0.2s ease;
    background-color: var(--youplan-bg);
    color: var(--youplan-text);
}

.form-group input:focus {
    outline: none;
    border-color: var(--youplan-primary);
    box-shadow: 0 0 0 3px rgba(141, 70, 231, 0.1);
}

.btn {
    width: 100%;
    padding: 14px 24px;
    background-color: var(--youplan-primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    box-sizing: border-box;
}

.btn:hover {
    background-color: var(--youplan-primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--youplan-shadow-hover);
}

.btn-secondary {
    background-color: transparent;
    color: var(--youplan-primary);
    border: 2px solid var(--youplan-primary);
}

.btn-secondary:hover {
    background-color: var(--youplan-primary);
    color: white;
}

/* Link styles */
.back-link {
    display: inline-block;
    margin-bottom: 20px;
    color: var(--youplan-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.back-link:hover {
    color: var(--youplan-primary-dark);
    text-decoration: underline;
}

.back-link.centered {
    display: block;
    text-align: center;
    margin-top: 20px;
    color: var(--youplan-text-muted);
}

.back-link.centered:hover {
    color: var(--youplan-text);
}

.logout-link {
    float: right;
    color: var(--youplan-text-muted);
    text-decoration: none;
    font-size: 0.9em;
    transition: color 0.2s ease;
}

.logout-link:hover {
    color: var(--youplan-text);
}

/* Error styles */
.error {
    color: #dc3545;
    background-color: #fef2f2;
    border: 1px solid #fecaca;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #dc3545;
}

/* Documentation grid styles */
.docs-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.doc-card {
    border: 1px solid var(--youplan-border);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
    background-color: var(--youplan-bg);
    box-shadow: var(--youplan-shadow);
}

.doc-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--youplan-shadow-hover);
    border-color: var(--youplan-primary);
}

.doc-card h3 {
    margin: 0 0 12px 0;
    color: var(--youplan-text);
    font-weight: 600;
    font-size: 1.25em;
}

.doc-card p {
    margin: 0 0 16px 0;
    color: var(--youplan-text-muted);
    line-height: 1.6;
}

.doc-card a {
    color: var(--youplan-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

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

/* Section styles */
.youplan-section {
    background-color: var(--youplan-surface);
}

.youplan-section h3 {
    color: var(--youplan-text);
    margin-top: 0;
}

.youplan-section p {
    color: var(--youplan-text-muted);
    margin-bottom: 0;
}

.youplan-section a {
    color: var(--youplan-primary);
}

.youplan-section a:hover {
    color: var(--youplan-primary-dark);
}

.client-section {
    background-color: var(--youplan-surface);
    color: var(--youplan-text);
}

.client-section h3 {
    color: var(--youplan-text);
    margin-top: 0;
}

.client-section p {
    color: var(--youplan-text-muted);
    margin-bottom: 0;
}

.client-section a {
    color: var(--youplan-primary);
}

.client-section a:hover {
    color: var(--youplan-primary-dark);
}

.login-section {
    background: var(--youplan-surface-elevated);
}

.login-section h3 {
    color: var(--youplan-text);
    margin-top: 0;
    font-weight: 600;
}

.login-section p {
    color: var(--youplan-text-muted);
    margin-bottom: 0;
}

.login-section a {
    color: var(--youplan-primary);
    font-weight: 500;
}

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

/* Status indicators */
.status-success {
    color: #059669;
    background-color: #ecfdf5;
    border: 1px solid #a7f3d0;
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: 500;
}

.status-warning {
    color: #d97706;
    background-color: #fffbeb;
    border: 1px solid #fed7aa;
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: 500;
}

.status-error {
    color: #dc2626;
    background-color: #fef2f2;
    border: 1px solid #fecaca;
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: 500;
}

/* Code blocks with syntax highlighting */
.code-block {
    background-color: var(--youplan-surface);
    border: 1px solid var(--youplan-border);
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    overflow-x: auto;
}

.code-block pre {
    margin: 0;
    background: none;
    border: none;
    padding: 0;
}

/* Color scheme switcher */
.theme-switcher {
    position: relative;
    flex-shrink: 0;
    margin-top: 5px;
}

.theme-toggle {
    background: var(--youplan-bg);
    border: 2px solid var(--youplan-border);
    border-radius: 30px;
    cursor: pointer;
    padding: 8px;
    width: 60px;
    height: 32px;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--youplan-shadow);
}

.theme-toggle:hover {
    box-shadow: var(--youplan-shadow-hover);
    transform: translateY(-1px);
}

.theme-toggle::before {
    content: '';
    position: absolute;
    top: calc(50% - 12px);
    left: 4px;
    width: 24px;
    height: 24px;
    background: var(--youplan-text);
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 1;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.theme-toggle[data-theme="dark"]::before {
    transform: translateX(28px);
    background: white;
}

.theme-toggle .icon {
    width: 12px;
    height: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--youplan-text);
    transition: color 0.3s ease;
    z-index: 2;
    position: relative;
    margin-right: 0; /* Override generic icon margin for theme switcher */
}

/* Light mode - light gray track, dark thumb, show sun icon */
[data-theme="light"] .theme-toggle {
    background: #f0f0f0;
}

[data-theme="light"] .theme-toggle::before {
    background: #333333;
}

[data-theme="light"] .theme-toggle .icon {
    color: #333333;
}

[data-theme="light"] .theme-toggle .icon:first-child {
    opacity: 0.3;
}

[data-theme="light"] .theme-toggle .icon:last-child {
    opacity: 1;
}

/* Dark mode - black track, white thumb, show moon icon */
[data-theme="dark"] .theme-toggle {
    background: #000000;
}

[data-theme="dark"] .theme-toggle::before {
    background: #ffffff;
}

[data-theme="dark"] .theme-toggle .icon {
    color: #ffffff;
}

[data-theme="dark"] .theme-toggle .icon:first-child {
    opacity: 1;
}

[data-theme="dark"] .theme-toggle .icon:last-child {
    opacity: 0.3;
}

/* Dark mode styles */
[data-theme="dark"] {
    --youplan-primary: hsl(210, 20%, 60%);
    --youplan-primary-dark: hsl(210, 20%, 50%);
    --youplan-primary-light: hsl(210, 20%, 70%);
    --youplan-surface: #2a2a2a;
    --youplan-surface-elevated: linear-gradient(135deg, #3a3a3a 0%, #333333 100%);
    --youplan-surface-dark: #1a0f1a;
    --youplan-text: #ffffff;
    --youplan-text-muted: #a0a0a0;
    --youplan-bg: #212121;
    --youplan-bg-90: #373737;
    --youplan-border: #404040;
    --youplan-shadow: 0 2px 10px rgba(0,0,0,0.3);
    --youplan-shadow-hover: 0 4px 15px rgba(0,0,0,0.4);
}

/* Light mode styles (default) */
[data-theme="light"] {
    --youplan-primary: hsl(210, 20%, 50%);
    --youplan-primary-dark: hsl(210, 20%, 40%);
    --youplan-primary-light: hsl(210, 20%, 60%);
    --youplan-surface: #FCEFF3;
    --youplan-primary: hsl(343, 71%, 45%);
    --youplan-primary-dark: hsl(343, 71%, 35%);
    --youplan-primary-light: hsl(343, 71%, 55%);
    --youplan-surface: #FCEFF3;
    --youplan-surface-elevated: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    --youplan-surface-dark: #2A1A27;
    --youplan-text: hsl(331, 39%, 11%);
    --youplan-text-muted: hsl(325, 14%, 34%);
    --youplan-bg: rgb(255, 255, 255);
    --youplan-bg-90: #F2F2F2;
    --youplan-border: #e9ecef;
    --youplan-shadow: 0 2px 10px rgba(0,0,0,0.1);
    --youplan-shadow-hover: 0 4px 15px rgba(0,0,0,0.15);
}

/* Smooth transitions for theme switching */
* {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Container styles updated for header layout */

/* Responsive design for theme switcher */
@media (max-width: 768px) {
    body {
        padding: 10px;
        max-width: 100%;
    }
    
    .container {
        padding: 20px;
        border-radius: 8px;
        margin: 0px auto;
    }
    
    .header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
        padding: 15px 20px;
        margin: 0 10px;
    }
    
    .header-content {
        width: 100%;
    }
    
    .header h1 {
        font-size: 2em;
    }
    
    .tabs {
        flex-direction: column;
    }
    
    .tab {
        text-align: left;
        border-bottom: none;
        border-left: 3px solid transparent;
    }
    
    .tab.active {
        border-bottom: none;
        border-left-color: var(--youplan-primary);
    }
    
    .docs-grid {
        grid-template-columns: 1fr;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .theme-switcher {
        margin-top: 0;
    }
    
    .theme-toggle {
        width: 50px;
        height: 28px;
        padding: 6px;
        border-radius: 25px;
    }
    
    .theme-toggle::before {
        width: 20px;
        height: 20px;
        top: calc(50% - 10px);
        left: 3px;
    }
    
    .theme-toggle[data-theme="dark"]::before {
        transform: translateX(22px);
    }
    
    .theme-toggle .icon {
        width: 10px;
        height: 10px;
        font-size: 10px;
        margin-right: 0; /* Override generic icon margin for theme switcher */
    }

    .theme-toggle .icon svg {
        width: 10px;
        height: 10px;
    }
}

/* Print styles */
@media print {
    body {
        background: white;
        color: black;
    }
    
    .container {
        box-shadow: none;
        border: 1px solid #ccc;
    }
    
    .btn, .nav {
        display: none;
    }
} 

/* Icon System - Tabler-style minimalist icons */
/* 
 * SVG Sources: All icons are from Tabler Icons (https://tabler-icons.io/)
 * - logout: tabler:logout
 * - document: tabler:file-text  
 * - wrench: tabler:wrench
 * - lock: tabler:lock
 * - link: tabler:link
 * - arrow-left: tabler:arrow-left
 * 
 * These are embedded as data URLs to avoid external dependencies.
 * To add new icons: copy the SVG from tabler-icons.io and convert to data URL.
 */
.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    position: relative;
    margin-right: 8px;
}

[data-icon]::before {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background: currentColor;
    mask-size: 16px 16px;
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-size: 16px 16px;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
}

/* Icon definitions using data attributes */
[data-icon="logout"]::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4'/%3E%3Cpolyline points='16,17 21,12 16,7'/%3E%3Cline x1='21' y1='12' x2='9' y2='12'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4'/%3E%3Cpolyline points='16,17 21,12 16,7'/%3E%3Cline x1='21' y1='12' x2='9' y2='12'/%3E%3C/svg%3E");
}

[data-icon="document"]::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'/%3E%3Cpolyline points='14,2 14,8 20,8'/%3E%3Cline x1='16' y1='13' x2='8' y2='13'/%3E%3Cline x1='16' y1='17' x2='8' y2='17'/%3E%3Cpolyline points='10,9 9,9 8,9'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'/%3E%3Cpolyline points='14,2 14,8 20,8'/%3E%3Cline x1='16' y1='13' x2='8' y2='13'/%3E%3Cline x1='16' y1='17' x2='8' y2='17'/%3E%3Cpolyline points='10,9 9,9 8,9'/%3E%3C/svg%3E");
}

[data-icon="wrench"]::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.77-3.77a6 6 0 0 1-7.94 7.94l-6.91 6.91a2.12 2.12 0 0 1-3-3l6.91-6.91a6 6 0 0 1 7.94-7.94l-3.76 3.76z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.77-3.77a6 6 0 0 1-7.94 7.94l-6.91 6.91a2.12 2.12 0 0 1-3-3l6.91-6.91a6 6 0 0 1 7.94-7.94l-3.76 3.76z'/%3E%3C/svg%3E");
}

[data-icon="lock"]::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='11' width='18' height='11' rx='2' ry='2'/%3E%3Ccircle cx='12' cy='16' r='1'/%3E%3Cpath d='M7 11V7a5 5 0 0 1 10 0v4'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='11' width='18' height='11' rx='2' ry='2'/%3E%3Ccircle cx='12' cy='16' r='1'/%3E%3Cpath d='M7 11V7a5 5 0 0 1 10 0v4'/%3E%3C/svg%3E");
}

[data-icon="link"]::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71'/%3E%3Cpath d='M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71'/%3E%3Cpath d='M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71'/%3E%3C/svg%3E");
}

[data-icon="arrow-left"]::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='19' y1='12' x2='5' y2='12'/%3E%3Cpolyline points='12,19 5,12 12,5'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='19' y1='12' x2='5' y2='12'/%3E%3Cpolyline points='12,19 5,12 12,5'/%3E%3C/svg%3E");
} 