.currency-toggle{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin-top:10px;
}

.currency-btn{
    border:none;
    padding:12px 18px;
    border-radius:14px;
    background:#fff;
    color:#365951;
    cursor:pointer;
    font-weight:600;
    transition:0.3s;
    border:1px solid #d4e3de;
}

.currency-btn.active{
    background:#007f5f;
    color:#fff;
    transform:translateY(-2px);
}

.result-card{
    background:linear-gradient(135deg,#007f5f,#55a630);
    border-radius:24px;
    padding:25px;
    color:#fff;
}

.result-title{
    font-size:15px;
    opacity:0.9;
}

.main-result{
    font-size:42px;
    font-weight:700;
    margin-top:10px;
}

.result-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-top:25px;
}

.result-item{
    background:rgba(255,255,255,0.15);
    padding:18px;
    border-radius:18px;
}

.result-item p{
    font-size:14px;
    opacity:0.9;
    margin-bottom:8px;
}

.result-item h3{
    font-size:22px;
}

.extra-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-top:20px;
}

.extra{
    background:#fff;
    border-radius:18px;
    padding:18px;
    border:1px solid #E6F0EE;
}

.extra span{
    display:block;
    font-size:13px;
    margin-bottom:8px;
    color:#365951;
}

.extra strong{
    color:#007f5f;
    font-size:20px;
}

.chart-box{
    margin-top:20px;
    background:#fff;
    border-radius:18px;
    padding:20px;
}

.timeline{
    margin-top:20px;
    background:#fff;
    border-radius:18px;
    padding:20px;
}

.timeline-item{
    display:flex;
    justify-content:space-between;
    padding:10px 0;
    border-bottom:1px solid #E6F0EE;
}

.timeline-item:last-child{
    border-bottom:none;
}

.insight{
    margin-top:20px;
    background:#E6F0EE;
    padding:18px;
    border-radius:18px;
    line-height:1.7;
}

canvas{
    width:100%;
}