/*
Theme Name: Kalkulačky Online
Theme URI: https://onlinekalkulacka.cz
Author: Váš tým
Author URI: https://onlinekalkulacka.cz
Description: Moderní WordPress téma pro portál s online kalkulačkami pro finance, daně, zdraví a volný čas.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kalkulacky
Tags: calculator, finance, responsive, dark-mode
*/

/* Variables for Light Mode */
:root {
    --color-primary: #007bff; /* Blue/Teal for CTA */
    --color-primary-dark: #0056b3;
    --color-text: #333;
    --color-text-secondary: #666;
    --color-background: #f8f9fa;
    --color-card-background: #ffffff;
    --color-border: #e0e0e0;
    --color-shadow-light: 0 2px 4px rgba(0, 0, 0, 0.05);
    --color-shadow-medium: 0 8px 15px rgba(0, 0, 0, 0.1);

    /* Tags Colors */
    --tag-primary: #3498db;
    --tag-success: #2ecc71;
    --tag-warning: #f1c40f;
    --tag-danger: #e74c3c;
    --tag-info: #9b59b6;
}

/* Variables for Dark Mode */
.dark-mode {
    --color-primary: #4a90e2;
    --color-primary-dark: #3a75c2;
    --color-text: #e0e0e0;
    --color-text-secondary: #a0a0a0;
    --color-background: #1e1e2f;
    --color-card-background: #2a2a3e;
    --color-border: #3b3b50;
    --color-shadow-light: 0 2px 4px rgba(0, 0, 0, 0.3);
    --color-shadow-medium: 0 8px 15px rgba(0, 0, 0, 0.4);
}

/* Global Reset and Typography */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-background);
    transition: background-color 0.3s, color 0.3s;
    min-height: 100vh;
}

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

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

h1, h2, h3, h4 {
    color: var(--color-text);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    border-bottom: 2px solid var(--color-border);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Utility Classes --- */
.section {
    padding: 3rem 0;
    padding-top: 0;
}

.section-subtitle {
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.hint-text {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
}

/* --- Buttons --- */
.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    text-align: center;
    transition: background-color 0.2s, box-shadow 0.2s, transform 0.1s;
    display: inline-block;
}

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

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

.btn-secondary {
    background-color: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-text);
}
.btn-secondary:hover {
    background-color: rgba(0, 0, 0, 0.05);
    text-decoration: none;
}

.dark-mode .btn-secondary {
    border-color: var(--color-border);
    color: var(--color-text);
}
.dark-mode .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

.icon-btn {
    background: none;
    border: none;
    color: var(--color-text);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0.5rem;
    border-radius: 50%;
    transition: background 0.2s;
}

.icon-btn:hover {
    background: rgba(0, 0, 0, 0.05);
}
.dark-mode .icon-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Accessibility: Focus States */
input:focus, select:focus, button:focus, a:focus, .card:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}
.card:focus {
    transform: translateY(-3px);
}


/* --- Tags --- */
.tag {
    display: inline-block;
    padding: 0.3rem 0.6rem;
    border-radius: 5px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-right: 0.5rem;
    white-space: nowrap;
    color: white;
}

.tag-success { background-color: var(--tag-success); }
.tag-warning { background-color: var(--tag-warning); color: #333; }
.tag-danger { background-color: var(--tag-danger); }
.tag-primary { background-color: var(--tag-primary); }
.tag-info { background-color: var(--tag-info); }
.tag-secondary { background-color: var(--color-text-secondary); }

/* --- Header & Navigation --- */
.header {
    background-color: var(--color-card-background);
    border-bottom: 1px solid var(--color-border);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--color-shadow-light);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-text);
}
.logo span {
    color: var(--color-primary);
}

.main-nav ul {
    list-style: none;
    display: none; /* Hidden on mobile by default */
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.search-box {
    display: none; 
    position: relative;
    max-width: 250px;
}
.search-box input {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid var(--color-border);
    background: var(--color-background);
    color: var(--color-text);
    width: 100%;
}
.search-box button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--color-text-secondary);
    padding: 0.5rem;
    cursor: pointer;
}

.menu-toggle {
    display: block; /* Visible on mobile */
}

/* Mobile Navigation Dropdown */
.main-nav.active ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 65px; /* Adjust based on header height */
    left: 0;
    width: 100%;
    background: var(--color-card-background);
    border-bottom: 1px solid var(--color-border);
    padding: 1rem 0;
    box-shadow: var(--color-shadow-medium);
}

.main-nav.active li {
    padding: 0.5rem 5%;
}
.main-nav.active a {
    display: block;
    width: 100%;
    font-weight: 600;
}

/* --- Hero Section --- */
.hero {
    background: var(--color-background);
    padding: 1rem 0 0rem;
    text-align: center;
}
.hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
    font-weight: 700;
}
.hero .slogan {
    font-size: 1.2rem;
    color: var(--color-text-secondary);
    max-width: 700px;
    margin: 0 auto 2rem;
}

.hero-search {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.hero-search input {
    padding: 1rem 1.5rem;
    border-radius: 10px;
    border: 1px solid var(--color-border);
    font-size: 1rem;
    background-color: var(--color-card-background);
    color: var(--color-text);
    box-shadow: var(--color-shadow-light);
}

/* --- Cards (General Styling) --- */
.card {
    background: var(--color-card-background);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--color-shadow-medium);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    border: 1px solid var(--color-border);
    display: block; /* Ensure category links fill space */
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    border-color: var(--color-primary);
    text-decoration: none;
}

/* Disable hover effect for single posts, pages and sidebar blocks */
.single-post.card:hover,
article.page.card:hover,
.sidebar-block.card:hover {
    transform: none;
    box-shadow: var(--color-shadow-medium);
    border-color: var(--color-border);
}

/* --- Category Grid --- */
.category-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
    margin-bottom: 3rem;
}

.category-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.category-card p {
    flex-grow: 1;
    margin-bottom: 1rem;
}
.category-card h3 {
    color: var(--color-text);
}

.icon-large {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.icon-finance { color: var(--tag-primary); }
.icon-health { color: var(--tag-danger); }
.icon-math { color: var(--tag-info); }
.icon-holiday { color: var(--tag-success); }


/* --- Calculator Grid --- */
.calculator-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}

.calculator-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.calculator-card h3 {
    margin-top: 0.5rem;
    font-size: 1.25rem;
}

.calculator-card p {
    color: var(--color-text-secondary);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}
.card-icon {
    font-size: 1.5rem;
    color: var(--color-primary);
}

.card-footer {
    text-align: center;
}


/* --- Main Layout (Sidebar/Content) --- */
.main-layout {
    display: grid;
    grid-template-columns: 1fr; /* Mobile: Single column */
    gap: 2rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.sidebar {
    padding-top: 0rem;
}

.sidebar-block {
    margin-bottom: 2rem;
    padding: 1.5rem;
}

.sidebar-block h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.update-info {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    margin-bottom: 1rem;
}

.exchange-list {
    list-style: none;
    margin-bottom: 1.5rem;
}
.exchange-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px dotted var(--color-border);
}
.exchange-list li:last-child {
    border-bottom: none;
}
.exchange-list .currency {
    font-weight: 600;
}
.exchange-list .rate {
    color: var(--color-primary-dark);
    font-weight: 700;
}

/* Articles List - Nejčtenější články */
.articles-list {
    list-style: none;
    margin-bottom: 1rem;
}
.articles-list li {
    position: relative;
    padding: 0.75rem 0 0.75rem 1.5rem;
    border-bottom: 1px solid var(--color-border);
    transition: background-color 0.2s;
}
.articles-list li:last-child {
    border-bottom: none;
}
.articles-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.2s;
}
.articles-list li:hover {
    background-color: var(--color-background);
}
.articles-list li:hover:before {
    transform: translateX(3px);
}
.articles-list a {
    color: var(--color-text);
    font-size: 0.95rem;
    line-height: 1.4;
    display: block;
    text-decoration: none;
}
.articles-list a:hover {
    color: var(--color-primary);
    text-decoration: none;
}

.cta-block {
    background-color: var(--color-primary);
    color: white;
    text-align: center;
    border: none;
}
.cta-block h4 { color: white; margin-bottom: 0.5rem; }
.cta-block p { color: rgba(255, 255, 255, 0.9); margin-bottom: 1rem; }
.cta-block .btn-primary {
    background-color: white;
    color: var(--color-primary);
}
.cta-block .btn-primary:hover {
    background-color: #eee;
}

/* --- Article Grid --- */
.article-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}

.article-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.article-image-placeholder {
    height: 150px;
    background: linear-gradient(45deg, var(--color-primary) 10%, var(--color-border) 90%);
    opacity: 0.8;
}
.article-content {
    padding: 1.5rem;
    flex-grow: 1;
}
.article-content h4 {
    margin-top: 0.5rem;
    font-size: 1.15rem;
    line-height: 1.4;
}
.article-content p {
    color: var(--color-text-secondary);
    margin: 0.5rem 0 1rem;
}
.article-meta {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    border-top: 1px solid var(--color-border);
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.article-meta a {
    font-weight: 600;
    white-space: nowrap;
}
.article-meta i {
    margin-right: 0.4rem;
}

/* --- Detail Kalkulačky Mockup --- */
.calculation-detail-mockup {
    margin: 3rem 0;
}

.calculation-detail-mockup .subtitle {
    font-style: italic;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    margin-bottom: 1.5rem;
}

.full-width-card {
    padding: 2rem;
}

.calculation-layout {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr; /* Mobile */
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 2rem;
}

.calculation-form .form-group {
    margin-bottom: 1rem;
}
.calculation-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
}
.calculation-form input[type="number"], 
.calculation-form select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background: var(--color-background);
    color: var(--color-text);
}
.calculation-form button {
    margin-top: 1rem;
    width: 100%;
}

.calculation-result {
    text-align: center;
    padding: 2rem;
    background-color: var(--color-background);
    border: 2px solid var(--color-primary);
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.2);
}

.result-card h3 {
    color: var(--color-text);
}

.result-value {
    margin: 1rem 0;
}
.result-value .value {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-primary-dark);
}
.result-value .label {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    display: block;
    margin-top: 5px;
}

.explanation-area {
    padding-top: 1rem;
}
.explanation-area h4 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}
.faq-item {
    margin-bottom: 0.5rem;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    background: var(--color-background);
}
.faq-item summary {
    cursor: pointer;
    font-weight: 600;
    padding: 0.2rem 0;
    transition: color 0.2s;
}
.faq-item summary:hover {
    color: var(--color-primary);
}
.faq-item p {
    padding: 0.5rem 0 0 0;
    color: var(--color-text-secondary);
}


/* --- Footer --- */
.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 0;
}

.dark-mode .footer {
    background-color: #1a1a25;
}

.footer h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer a {
    color: #bdc3c7;
    transition: color 0.2s;
}
.footer a:hover {
    color: white;
    text-decoration: underline;
}

.footer ul {
    list-style: none;
    padding: 0;
}
.footer ul li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.brand-info .logo {
    color: white;
}
.brand-info h3 {
    color: white;
}
.brand-info h3 span {
    color: #4a90e2;
}
.brand-info p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-top: 1rem;
    color: #bdc3c7;
}
.copyright {
    font-size: 0.8rem !important;
}

.desktop-only {
    display: none;
}


/* --- Media Queries (Tablet and Desktop) --- */

/* Tablet */
@media (min-width: 768px) {
    .header-actions {
        gap: 1.5rem;
    }
    
    /* FIX: Cluster navigation and actions to the right */
    .main-nav {
        margin-left: auto;
    }

    .main-nav ul {
        display: flex;
        gap: 1.5rem;
    }
    
    .main-nav a {
        color: var(--color-text);
        font-weight: 500;
        padding: 0.25rem 0.5rem;
    }
    .main-nav a:hover {
        color: var(--color-primary);
        text-decoration: none;
    }

    .menu-toggle {
        display: none;
    }
    
    .search-box {
        display: block;
    }

    .hero-search {
        flex-direction: row;
        gap: 0;
    }
    .hero-search input {
        border-radius: 10px 0 0 10px;
        flex-grow: 1;
    }
    .hero-search button {
        border-radius: 0 10px 10px 0;
        min-width: 180px;
    }
    
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .calculator-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .article-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .calculation-layout {
        grid-template-columns: 2fr 1fr; /* Form | Result */
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
        gap: 1.5rem;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    
    .main-layout {
        grid-template-columns: 3fr 1fr; /* Content | Sidebar */
    }
    
    .category-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .calculator-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .article-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .desktop-only {
        display: flex;
    }
    
    .sidebar {
        /* Přepnuto na statický sidebar, odstraněno sticky position */
        height: fit-content;
    }
}

/* --- WordPress Specific Styles --- */

/* Entry Meta */
.entry-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1rem 0;
    padding: 1rem 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

.entry-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* Entry Content */
.entry-content {
    margin: 2rem 0;
    line-height: 1.8;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.entry-content p {
    margin-bottom: 1rem;
}

.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* WordPress Block Lists */
.wp-block-list,
.entry-content ul,
.entry-content ol {
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.wp-block-list li,
.entry-content ul li,
.entry-content ol li {
    margin-bottom: 0.5rem;
}

/* Post Thumbnail */
.post-thumbnail,
.page-thumbnail {
    margin: 2rem 0;
    border-radius: 12px;
    overflow: hidden;
}

.post-thumbnail img,
.page-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

/* Entry Footer */
.entry-footer {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-border);
}

.tags-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

/* Post Navigation */
/* Post Navigation - navigace mezi články */
.post-navigation {
    margin: 3rem 0;
    padding: 0;
    clear: both;
}

.nav-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: stretch;
}

.nav-previous,
.nav-next {
    display: flex;
    flex-direction: column;
}

.nav-previous {
    text-align: left;
}

.nav-next {
    text-align: right;
}

.post-navigation a {
    display: block;
    padding: 1.5rem;
    background: var(--color-card-background);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    text-decoration: none;
    color: var(--color-text);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.post-navigation a:hover {
    background: var(--color-background);
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.post-navigation a i {
    color: var(--color-primary);
    font-size: 1.2rem;
    margin: 0 0.5rem;
}

.post-navigation .nav-title {
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.4;
    margin-top: 0.5rem;
}

/* Responzivní zobrazení */
@media (max-width: 768px) {
    .nav-links {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .nav-next {
        text-align: left;
    }
    
    .post-navigation a {
        padding: 1rem;
    }
}

/* Comments */
.comments-area {
    margin-top: 3rem;
    padding: 2rem;
}

.comment-list {
    list-style: none;
    padding: 0;
}

.comment-list li {
    margin-bottom: 2rem;
    padding: 1rem;
    background: var(--color-background);
    border-radius: 8px;
}

.comment-author {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.comment-meta {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    margin-bottom: 1rem;
}

.comment-content p {
    margin-bottom: 0.5rem;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background: var(--color-background);
    color: var(--color-text);
    margin-bottom: 1rem;
}

/* Pagination */
.pagination,
.posts-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.pagination a,
.pagination span,
.posts-pagination a,
.posts-pagination span {
    padding: 0.5rem 1rem;
    background: var(--color-card-background);
    border: 1px solid var(--color-border);
    border-radius: 5px;
    transition: all 0.2s;
}

.pagination a:hover,
.posts-pagination a:hover {
    background: var(--color-primary);
    color: white;
    text-decoration: none;
}

.pagination .current,
.posts-pagination .current {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

/* Page Header */
.page-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--color-border);
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.archive-description {
    color: var(--color-text-secondary);
    margin-top: 1rem;
}

/* Alignments */
.alignleft {
    float: left;
    margin-right: 1.5rem;
    margin-bottom: 1rem;
}

.alignright {
    float: right;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Screen Reader Text */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

.screen-reader-text:focus {
    background-color: var(--color-background);
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    color: var(--color-text);
    display: block;
    font-size: 0.875rem;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}