/* Modern Beautiful Theme - Focus on Readability */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Modern Color Palette - High Contrast for Readability */
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --secondary-color: #7c3aed;
    --accent-color: #10b981;
    --text-primary: #1f2937;
    --text-secondary: #4b5563;
    --text-muted: #6b7280;
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --bg-tertiary: #f3f4f6;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-subtle: linear-gradient(135deg, #f0f9ff 0%, #e0e7ff 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--gradient-subtle);
    min-height: 100vh;
    padding: 30px 20px;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    background: var(--bg-primary);
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-color);
}

.style-toggle {
    position: fixed;
    top: 30px;
    right: 30px;
    padding: 14px 28px;
    background: var(--bg-primary);
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-color);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-lg);
    font-family: inherit;
}

.style-toggle:hover {
    background: var(--primary-color);
    color: var(--bg-secondary);
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(96, 165, 250, 0.4);
}

.style-toggle:active {
    transform: translateY(-1px);
}

.download-pdf-btn {
    position: fixed;
    top: 90px;
    right: 30px;
    padding: 14px 28px;
    background: var(--bg-primary);
    border: 2px solid var(--accent-color);
    border-radius: 30px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: var(--accent-color);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-lg);
    font-family: inherit;
}

.download-pdf-btn:hover {
    background: var(--accent-color);
    color: var(--bg-secondary);
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(52, 211, 153, 0.4);
}

.download-pdf-btn:active {
    transform: translateY(-1px);
}

/* Hidden items */
.hidden {
    display: none !important;
}

/* Load More Button */
.load-more-btn {
    margin: 30px auto 0;
    padding: 14px 28px;
    background: var(--bg-primary);
    border: 2px solid var(--secondary-color);
    border-radius: 30px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: var(--secondary-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-md);
    font-family: inherit;
    display: block;
}

.load-more-btn:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.load-more-btn:active {
    transform: translateY(0);
}

.header {
    background: var(--gradient-primary);
    padding: 70px 50px;
    color: white;
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.profile-section {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.profile-image-container {
    flex-shrink: 0;
}

.profile-image {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.profile-image:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.profile-info {
    flex: 1;
    min-width: 280px;
}

.name {
    font-size: 3.5em;
    font-weight: 800;
    margin-bottom: 12px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.job-title {
    font-size: 1.6em;
    opacity: 0.95;
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.4;
}

main {
    padding: 50px;
}

.section {
    margin-bottom: 60px;
    padding-bottom: 50px;
    border-bottom: 2px solid var(--border-color);
}

.section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.section-title {
    font-size: 2.2em;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 5px;
    background: var(--gradient-primary);
    border-radius: 3px;
}

.section-content {
    font-size: 1.125em;
    line-height: 1.9;
    color: var(--text-secondary);
    max-width: 900px;
}

.skills-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.skills-list li {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1em;
    letter-spacing: 0.01em;
}

.skills-list li:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 25px rgba(96, 165, 250, 0.5);
}

.experience-item,
.education-item {
    background: var(--bg-secondary);
    padding: 32px;
    border-radius: 16px;
    margin-bottom: 24px;
    border-left: 5px solid var(--primary-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
}

.experience-item:hover,
.education-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
    background: var(--bg-tertiary);
    border-left-color: var(--secondary-color);
}

.experience-title,
.education-title {
    font-size: 1.6em;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.experience-company,
.education-institution {
    font-size: 1.15em;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
}

.experience-period,
.education-period {
    font-size: 1em;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 16px;
    display: inline-block;
    padding: 4px 12px;
    background: var(--bg-tertiary);
    border-radius: 20px;
    font-weight: 500;
}

.experience-description,
.education-description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 18px;
    font-size: 1.05em;
}

.experience-technologies {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid var(--border-color);
}

.experience-technologies strong {
    color: var(--primary-color);
    margin-right: 10px;
    font-weight: 700;
    font-size: 1.05em;
}

.tech-tags {
    display: inline;
    color: var(--text-secondary);
    font-size: 1em;
    line-height: 1.8;
}

.contact-info {
    background: var(--bg-secondary);
    padding: 32px;
    border-radius: 16px;
    border: 2px solid var(--border-color);
}

.contact-info p {
    margin-bottom: 18px;
    font-size: 1.125em;
    line-height: 1.8;
    color: var(--text-secondary);
}

.contact-info strong {
    color: var(--primary-color);
    margin-right: 12px;
    font-weight: 700;
    min-width: 120px;
    display: inline-block;
}

.contact-info a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.2s ease;
    font-weight: 600;
    border-bottom: 2px solid transparent;
}

.contact-info a:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

/* Markdown Style - Same as base */
body.markdown-style {
    background: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
}

body.markdown-style .container {
    background: #ffffff;
    border-radius: 0;
    box-shadow: none;
    border: 1px solid #e1e4e8;
}

body.markdown-style .style-toggle {
    background: #24292e;
    color: #ffffff;
    border-color: #24292e;
}

body.markdown-style .style-toggle:hover {
    background: #0366d6;
    border-color: #0366d6;
}

body.markdown-style .download-pdf-btn {
    background: #24292e;
    color: #ffffff;
    border-color: #24292e;
}

body.markdown-style .download-pdf-btn:hover {
    background: #28a745;
    border-color: #28a745;
}

body.markdown-style .load-more-btn {
    background: transparent;
    border: none;
    color: #0366d6;
    padding: 0;
    margin: 20px 0 0;
    font-size: 1em;
    font-weight: normal;
    box-shadow: none;
    border-radius: 0;
    text-decoration: underline;
    cursor: pointer;
}

body.markdown-style .load-more-btn:hover {
    color: #005cc5;
    background: transparent;
    transform: none;
    box-shadow: none;
}

body.markdown-style .header {
    background: #ffffff;
    color: #24292e;
    padding: 40px;
    border-bottom: 1px solid #e1e4e8;
}

body.markdown-style .header::before {
    display: none;
}

body.markdown-style .profile-image {
    border: 2px solid #e1e4e8;
    box-shadow: none;
}

body.markdown-style .name {
    font-size: 2em;
    color: #24292e;
    text-shadow: none;
    font-weight: 600;
}

body.markdown-style .job-title {
    color: #586069;
    font-size: 1.2em;
}

body.markdown-style main {
    padding: 40px;
    max-width: 800px;
}

body.markdown-style .section {
    border-bottom: 1px solid #e1e4e8;
    margin-bottom: 30px;
    padding-bottom: 30px;
}

body.markdown-style .section-title {
    font-size: 1.5em;
    color: #24292e;
    border-bottom: 1px solid #e1e4e8;
    padding-bottom: 8px;
    margin-bottom: 20px;
    font-weight: 600;
}

body.markdown-style .section-title::after {
    display: none;
}

body.markdown-style .section-content {
    color: #24292e;
    font-size: 1em;
    line-height: 1.6;
}

body.markdown-style .skills-list {
    list-style: disc;
    display: block;
    padding-left: 30px;
}

body.markdown-style .skills-list li {
    background: none;
    color: #24292e;
    padding: 5px 0;
    border-radius: 0;
    box-shadow: none;
    font-weight: normal;
}

body.markdown-style .skills-list li:hover {
    transform: none;
    box-shadow: none;
}

body.markdown-style .experience-item,
body.markdown-style .education-item {
    background: #ffffff;
    border-left: 3px solid #d1d5da;
    padding: 15px 0 15px 20px;
    margin-bottom: 20px;
    border-radius: 0;
}

body.markdown-style .experience-item:hover,
body.markdown-style .education-item:hover {
    transform: none;
    box-shadow: none;
    border-left-color: #0366d6;
}

body.markdown-style .experience-title,
body.markdown-style .education-title {
    font-size: 1.25em;
    color: #0366d6;
    margin-bottom: 5px;
    font-weight: 600;
}

body.markdown-style .experience-company,
body.markdown-style .education-institution {
    color: #24292e;
    font-weight: 600;
}

body.markdown-style .experience-period,
body.markdown-style .education-period {
    color: #586069;
    font-size: 0.9em;
    background: none;
    padding: 0;
    border-radius: 0;
}

body.markdown-style .experience-description,
body.markdown-style .education-description {
    color: #24292e;
}

body.markdown-style .experience-technologies {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e1e4e8;
}

body.markdown-style .experience-technologies strong {
    color: #24292e;
    margin-right: 8px;
}

body.markdown-style .tech-tags {
    color: #586069;
    font-size: 0.9em;
}

body.markdown-style .contact-info {
    background: #ffffff;
    border: 1px solid #e1e4e8;
    padding: 20px;
    border-radius: 0;
}

body.markdown-style .contact-info p {
    margin-bottom: 10px;
    font-size: 1em;
}

body.markdown-style .contact-info strong {
    color: #24292e;
}

body.markdown-style .contact-info a {
    color: #0366d6;
}

body.markdown-style .contact-info a:hover {
    color: #005cc5;
    text-decoration: underline;
    border-bottom: none;
}

/* Markdown Style + Dark Mode Combination */
body.dark-mode.markdown-style {
    background: #0d1117;
}

body.dark-mode.markdown-style .container {
    background: #161b22;
    border-color: #30363d;
}

body.dark-mode.markdown-style .header {
    background: #161b22;
    color: #f0f6fc;
    border-bottom: 1px solid #30363d;
}

body.dark-mode.markdown-style .name {
    color: #f0f6fc;
}

body.dark-mode.markdown-style .job-title {
    color: #8b949e;
}

body.dark-mode.markdown-style .section {
    border-bottom: 1px solid #30363d;
}

body.dark-mode.markdown-style .section-title {
    color: #58a6ff;
    border-bottom: 1px solid #30363d;
}

body.dark-mode.markdown-style .section-content {
    color: #c9d1d9;
}

body.dark-mode.markdown-style .skills-list li {
    color: #c9d1d9;
}

body.dark-mode.markdown-style .experience-item,
body.dark-mode.markdown-style .education-item {
    background: #161b22;
    border-left: 3px solid #30363d;
}

body.dark-mode.markdown-style .experience-item:hover,
body.dark-mode.markdown-style .education-item:hover {
    border-left-color: #58a6ff;
}

body.dark-mode.markdown-style .experience-title,
body.dark-mode.markdown-style .education-title {
    color: #58a6ff;
}

body.dark-mode.markdown-style .experience-company,
body.dark-mode.markdown-style .education-institution {
    color: #c9d1d9;
}

body.dark-mode.markdown-style .experience-period,
body.dark-mode.markdown-style .education-period {
    color: #8b949e;
}

body.dark-mode.markdown-style .experience-description,
body.dark-mode.markdown-style .education-description {
    color: #c9d1d9;
}

body.dark-mode.markdown-style .experience-technologies {
    border-top: 1px solid #30363d;
}

body.dark-mode.markdown-style .experience-technologies strong {
    color: #c9d1d9;
}

body.dark-mode.markdown-style .tech-tags {
    color: #8b949e;
}

body.dark-mode.markdown-style .contact-info {
    background: #161b22;
    border: 1px solid #30363d;
}

body.dark-mode.markdown-style .contact-info p {
    color: #c9d1d9;
}

body.dark-mode.markdown-style .contact-info strong {
    color: #c9d1d9;
}

body.dark-mode.markdown-style .contact-info a {
    color: #58a6ff;
}

body.dark-mode.markdown-style .contact-info a:hover {
    color: #79c0ff;
}

body.dark-mode.markdown-style .profile-image {
    border-color: #30363d;
}

body.dark-mode.markdown-style .style-toggle {
    background: #21262d;
    color: #c9d1d9;
    border-color: #30363d;
}

body.dark-mode.markdown-style .style-toggle:hover {
    background: #30363d;
    border-color: #58a6ff;
    color: #58a6ff;
}

body.dark-mode.markdown-style .download-pdf-btn {
    background: #21262d;
    color: #c9d1d9;
    border-color: #30363d;
}

body.dark-mode.markdown-style .download-pdf-btn:hover {
    background: #238636;
    border-color: #238636;
    color: #ffffff;
}

body.dark-mode.markdown-style .load-more-btn {
    background: transparent;
    border: none;
    color: #58a6ff;
    padding: 0;
    margin: 20px 0 0;
    font-size: 1em;
    font-weight: normal;
    box-shadow: none;
    border-radius: 0;
    text-decoration: underline;
    cursor: pointer;
}

body.dark-mode.markdown-style .load-more-btn:hover {
    color: #79c0ff;
    background: transparent;
    transform: none;
    box-shadow: none;
}

body.dark-mode.markdown-style .dark-mode-toggle {
    background: #21262d;
    border-color: #30363d;
    color: #c9d1d9;
}

body.dark-mode.markdown-style .dark-mode-toggle:hover {
    background: #30363d;
    color: #58a6ff;
    border-color: #58a6ff;
}

/* Dark Mode (overschrijft light theme standaard) */
body.dark-mode {
    --primary-color: #60a5fa;
    --primary-dark: #3b82f6;
    --primary-light: #93c5fd;
    --secondary-color: #a78bfa;
    --accent-color: #34d399;
    --text-primary: #f9fafb;
    --text-secondary: #d1d5db;
    --text-muted: #9ca3af;
    --bg-primary: #1f2937;
    --bg-secondary: #111827;
    --bg-tertiary: #374151;
    --border-color: #374151;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -2px rgba(0, 0, 0, 0.3);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.6), 0 10px 10px -5px rgba(0, 0, 0, 0.4);
    --gradient-primary: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    --gradient-subtle: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    
    color: var(--text-primary);
    background: var(--gradient-subtle);
}

body.dark-mode .container {
    background: var(--bg-primary);
    border-color: var(--border-color);
}

body.dark-mode .style-toggle {
    background: var(--bg-primary);
    color: var(--primary-color);
}

body.dark-mode .style-toggle:hover {
    background: var(--primary-color);
    color: var(--bg-secondary);
}

body.dark-mode .download-pdf-btn {
    background: var(--bg-primary);
    color: var(--accent-color);
}

body.dark-mode .download-pdf-btn:hover {
    background: var(--accent-color);
    color: var(--bg-secondary);
}

body.dark-mode .load-more-btn {
    background: var(--bg-primary);
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

body.dark-mode .load-more-btn:hover {
    background: var(--secondary-color);
    color: var(--bg-secondary);
}

body.dark-mode .header {
    background: var(--gradient-primary);
}

body.dark-mode .profile-image {
    border-color: rgba(255, 255, 255, 0.3);
}

body.dark-mode .experience-item,
body.dark-mode .education-item {
    background: var(--bg-secondary);
}

body.dark-mode .experience-item:hover,
body.dark-mode .education-item:hover {
    background: var(--bg-tertiary);
}

body.dark-mode .contact-info {
    background: var(--bg-secondary);
    border-color: var(--border-color);
}

/* Dark Mode Toggle Button - Links Onderin */
.dark-mode-toggle {
    position: fixed;
    bottom: 30px;
    left: 30px;
    padding: 14px 28px;
    background: var(--bg-primary);
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-color);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-lg);
    font-family: inherit;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dark-mode-toggle:hover {
    background: var(--primary-color);
    color: var(--bg-secondary);
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(96, 165, 250, 0.4);
}

.dark-mode-toggle:active {
    transform: translateY(-1px);
}

body.dark-mode .dark-mode-toggle {
    background: var(--bg-primary);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

body.dark-mode .dark-mode-toggle:hover {
    background: var(--primary-color);
    color: var(--bg-secondary);
    box-shadow: 0 12px 24px rgba(96, 165, 250, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 15px 10px;
        font-size: 15px;
    }

    .header {
        padding: 40px 30px;
    }

    .profile-section {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .profile-image {
        width: 180px;
        height: 180px;
    }

    .name {
        font-size: 2.2em;
    }

    .job-title {
        font-size: 1.3em;
    }

    main {
        padding: 30px 20px;
    }

    .section-title {
        font-size: 1.8em;
        margin-bottom: 20px;
    }

    .section-content {
        font-size: 1.05em;
    }

    .style-toggle {
        top: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 13px;
    }

    .download-pdf-btn {
        top: 70px;
        right: 15px;
        padding: 12px 20px;
        font-size: 13px;
    }
    
    .load-more-btn {
        padding: 12px 20px;
        font-size: 13px;
        margin: 20px auto 0;
    }

    .experience-item,
    .education-item {
        padding: 24px 20px;
    }

    .contact-info {
        padding: 24px 20px;
    }

    .dark-mode-toggle {
        bottom: 15px;
        left: 15px;
        padding: 12px 20px;
        font-size: 13px;
    }
}

/* Print Styles for PDF Generation */
@media print {
    @page {
        size: A4 landscape;
        margin: 10mm;
    }
    
    body {
        background: white !important;
        padding: 0 !important;
    }
    
    .style-toggle,
    .download-pdf-btn,
    .dark-mode-toggle,
    .load-more-btn {
        display: none !important;
    }
    
    .container {
        box-shadow: none !important;
        border-radius: 0 !important;
        max-width: 100% !important;
        margin: 0 !important;
        border: none !important;
        background: white !important;
    }
    
    .header {
        background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%) !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    .header::before {
        display: none;
    }
    
    .section {
        page-break-inside: avoid;
        break-inside: avoid;
    }
    
    .experience-item,
    .education-item {
        page-break-inside: avoid;
        break-inside: avoid;
    }
    
    img {
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
        max-width: 100%;
        height: auto;
    }

    .section-title {
        color: #60a5fa !important;
    }

    .experience-title,
    .education-title {
        color: #60a5fa !important;
    }
}
