/* STYLE.CSS */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#ffffff;
    font-family:'Inter',sans-serif;
    color:#111;
}

.app{
    max-width:430px;
    margin:auto;
    min-height:100vh;
    padding:18px 14px;
    background:#fff;
}

/* HEADER */

.topbar{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    margin-bottom:22px;
}

.left-head{
    display:flex;
    align-items:flex-start;
    gap:14px;
}

.back{
    font-size:24px;
    margin-top:4px;
    cursor:pointer;
}

.title-box h1{
    font-size:38px;
    font-weight:700;
    line-height:1;
}

.title-box p{
    margin-top:6px;
    color:#8c8c8c;
    font-size:15px;
    font-weight:500;
}

.report{
    color:#00a884;
    font-size:15px;
    font-weight:700;
    margin-top:8px;
}

/* DATE */

.date-box{
    margin-bottom:18px;
}

.date-pill{
    display:inline-flex;
    align-items:center;
    gap:12px;
    background:#f5f5f5;
    padding:14px 18px;
    border-radius:16px;
    font-size:16px;
    font-weight:700;
}

/* CARD */

.pnl-card{
    border:1px solid #dfdfdf;
    border-radius:18px;
    padding:24px 20px;
    margin-bottom:20px;
}

.row{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:10px;
    margin-bottom:18px;
}

.row:last-child{
    margin-bottom:0;
}

.row span{
    font-size:18px;
    line-height:1.3;
}

.green{
    color:#00a884;
    font-weight:700;
}

.red{
    color:#ef4444;
    font-weight:700;
}

.red-text{
    color:#111;
    font-weight:700;
}

.divider{
    height:1px;
    background:#e5e5e5;
    margin:18px 0;
}

/* TABLE HEADER */

.head-row{
    display:flex;
    justify-content:space-between;
    margin-bottom:10px;
    color:#7a7a7a;
    font-size:14px;
    font-weight:600;
}

/* TRADE */

.trade{
    display:flex;
    justify-content:space-between;
    gap:15px;
    padding:18px 0;
    border-bottom:1px solid #efefef;
    min-height:92px;
}

.trade-name{
    flex:1;
    font-size:17px;
    line-height:1.45;
    font-weight:500;
    color:#111;
}

.trade-right{
    width:140px;
    text-align:right;
}

.amount{
    font-size:20px;
    font-weight:700;
    white-space:nowrap;
    line-height:1.2;
}

.qty{
    margin-top:8px;
    font-size:14px;
    font-weight:700;
    color:#222;
}

/* MOBILE */

@media(max-width:480px){

.app{
    padding:16px 14px;
}

.title-box h1{
    font-size:34px;
}

.trade-name{
    font-size:16px;
}

.amount{
    font-size:18px;
}

.trade-right{
    width:125px;
}

}