body { 
    font-family: 'Inter', sans-serif; 
    scroll-behavior: smooth; 
}

.mono { 
    font-family: 'JetBrains Mono', monospace; 
}

.bg-excel { 
    background-color: #1D6F42; 
}

.bg-excel-light { 
    background-color: #F9FAFB; 
}

/* Efekt dla kart wyników */
.result-card {
    border-width: 2px;
    border-color: transparent;
}

.result-card:hover { 
    box-shadow: 0 10px 15px -3px rgba(29, 111, 66, 0.1); 
    border-color: #10B981; 
}

/* style.css extension */
article h2 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

article p {
    margin-bottom: 1.25rem;
    line-height: 1.75;
}

article code {
    background-color: #ecfdf5; /* emerald-50 */
    color: #065f46; /* emerald-800 */
    padding: 0.2rem 0.4rem;
    border-radius: 0.25rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9em;
}

/* style.css */

/* Globalne wymuszenie czcionki dla wszystkich nagłówków */
h1, h2, h3, h4 {
    font-family: 'Inter', sans-serif !important;
}

/* Klasy dla paska bocznego (sidebar) */
.sidebar-link-inactive {
    display: block;
    padding: 1rem;
    background-color: #ffffff;
    border: 1px solid #f3f4f6; /* border-gray-100 */
    border-radius: 0.75rem; /* rounded-xl */
    font-weight: 500;
    color: #6b7280; /* text-gray-500 */
    transition: all 0.2s;
}

.sidebar-link-inactive:hover {
    border-color: #a7f3d0; /* border-emerald-200 */
    color: #059669; /* text-emerald-600 */
}

.sidebar-link-active {
    display: block;
    padding: 1rem;
    background-color: #ffffff;
    border: 2px solid #10b981; /* border-emerald-500 */
    border-radius: 0.75rem; /* rounded-xl */
    font-weight: 600;
    color: #047857; /* text-emerald-700 */
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); /* shadow-sm */
}