<style>
.track-container{
    max-width:700px;
    margin:0 auto;
    padding:140px 20px 60px;
}

.track-card{
    background:#fff;
    border:1px solid #ECECEC;
    border-radius:14px;
    padding:40px;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
}

.track-title{
    font-size:34px;
    font-weight:700;
    margin-bottom:12px;
    color:#171717;
}

.track-subtitle{
    color:#666;
    line-height:1.8;
    margin-bottom:35px;
}

.track-form{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.track-input{
    flex:1;
    min-width:250px;
    padding:16px 18px;
    border:1px solid #DDD;
    border-radius:8px;
    font-size:15px;
    outline:none;
    transition:.2s;
}

.track-input:focus{
    border-color:#171717;
}

.track-button{
    padding:16px 30px;
    background:#171717;
    color:white;
    border:none;
    border-radius:8px;
    cursor:pointer;
    font-size:15px;
    font-weight:600;
    transition:.2s;
}

.track-button:hover{
    background:#333;
}

.order-card{
    margin-top:40px;
    background:#FAFAFA;
    border:1px solid #ECECEC;
    border-radius:12px;
    overflow:hidden;
}

.order-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 24px;
    border-bottom:1px solid #ECECEC;
}

.order-row:last-child{
    border-bottom:none;
}

.order-label{
    font-weight:600;
    color:#171717;
}

.order-value{
    color:#555;
}

.status{
    display:inline-block;
    padding:6px 14px;
    border-radius:999px;
    background:#EEF6EF;
    color:#1C7A34;
    font-weight:600;
    font-size:14px;
}

@media(max-width:640px){

.track-card{
    padding:25px;
}

.track-form{
    flex-direction:column;
}

.track-button{
    width:100%;
}

.order-row{
    flex-direction:column;
    align-items:flex-start;
    gap:8px;
}

}
</style>
