body{
margin:0;
background:#050505;
color:#fff;
font-family:Arial;
}

.hero{
min-height:100vh;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
padding:20px;
text-align:center;
}

.logo{
font-size:32px;
font-weight:bold;
color:#39ff14;
margin-bottom:20px;
}

.tracking-form{
display:flex;
gap:10px;
width:100%;
max-width:700px;
}

.tracking-form input{
flex:1;
padding:18px;
border-radius:12px;
border:1px solid #333;
background:#111;
color:#fff;
font-size:18px;
}

.tracking-form button{
padding:18px 30px;
border:none;
border-radius:12px;
background:#39ff14;
font-weight:bold;
cursor:pointer;
}

.container{
max-width:1100px;
margin:auto;
padding:20px;
}

.card{
background:#111;
border:1px solid #39ff14;
padding:25px;
border-radius:20px;
margin-top:30px;
}

.status-box{
padding:20px;
border:2px solid;
border-radius:15px;
font-size:24px;
font-weight:bold;
margin:20px 0;
text-align:center;
}

.tracking-line{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
margin:40px 0;
}

.step{
text-align:center;
opacity:.3;
}

.step.active{
opacity:1;
}

.circle{
width:55px;
height:55px;
background:#222;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
margin:auto auto 10px;
border:2px solid #39ff14;
}

.product{
padding:15px;
background:#000;
border-radius:10px;
margin-bottom:10px;
}

.note{
margin-top:20px;
padding:20px;
background:#000;
border-radius:15px;
}

.saved-order{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px;
background:#000;
border-radius:15px;
margin-bottom:15px;
text-decoration:none;
color:#fff;
}

.status-dot{
width:18px;
height:18px;
border-radius:50%;
}

.my-trackings{
margin-top:20px;
color:#39ff14;
text-decoration:none;
}

@media(max-width:800px){

.tracking-form{
flex-direction:column;
}

.tracking-line{
grid-template-columns:1fr;
}

}
.admin-bar {
    background: #000;
    border-bottom: 1px solid #39ff14;
    padding: 18px 30px;
    display: flex;
    justify-content: space-between;
}

.admin-bar a {
    color: #39ff14;
    text-decoration: none;
}

.alert {
    background: #3b0000;
    border: 1px solid #ff4444;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.success {
    background: #0d2f0d;
    border: 1px solid #39ff14;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.order-box {
    background: #050505;
    border: 1px solid #333;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
}

.product-row {
    display: grid;
    grid-template-columns: 1fr 1fr 100px;
    gap: 10px;
}

.wide {
    max-width: 1200px;
}

@media(max-width:800px) {
    .product-row {
        grid-template-columns: 1fr;
    }

    .admin-bar {
        flex-direction: column;
        gap: 10px;
    }
}