/* Custom CSS from Agentic Features */
.lang-toggle-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #000;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-family: sans-serif;
    font-size: 14px;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: transform 0.2s;
}
.lang-toggle-btn:hover { transform: scale(1.05); }

/* Default state: Show PL, Hide EN */
body:not(.show-en) .lang-en { display: none !important; }
body.show-en .lang-pl { display: none !important; }

/* Timeline Styles (from agentic-features inline styles) */
.timeline-item {
    margin-bottom: 40px; 
    position: relative; 
    padding-left: 20px;
}
.dot {
    width: 12px; 
    height: 12px; 
    background: #C5B8A5; 
    position: absolute; 
    left: -38px; 
    top: 5px; 
    border-radius: 50%;
}
