/* RESET */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
body{
    font-family:Arial, Helvetica, sans-serif;
    background:#f5f5f5;
    overflow-x:hidden;
}
/* CONTAINER */
.container{
    width:100%;
    max-width:900px;
    margin:auto;
    position:relative;
    padding-bottom:100px;
}
/* HEADER */
.satu{
    width:100%;
    height:80px;
    background:black;
    position:fixed;
    top:0;
    left:0;
    z-index:999;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 8px;
}
/* LOGO */
.namatoko{
    display:flex;
    align-items:center;
}
.namadepan{
    color:white;
    font-size:1.2rem;
    font-weight:bold;
}
.namabelakang{
    color:crimson;
    margin-left:4px;
    font-size:1rem;
}
/* FOTO USER */
.foto{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
}
.bingkai{
    width:43px;
    height:43px;
    border-radius:50%;
    overflow:hidden;
    background:#fff;
}
.bingkai img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.inisial{
    margin-top:5px;
    font-size:9px;
}
.inisial a{
    color:white;
    text-decoration:none;
}
/* ICON */
.icon{
    display:flex;
    align-items:center;
    gap:10px;
}
.lonceng{
    width:28px;
    margin-left: 120px;
}
/* MENU BAWAH */
.dua{
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    height:65px;
    background:linear-gradient(80deg,#6a376c,#8ec5fc);
    display:flex;
    justify-content:space-around;
    align-items:center;
    z-index:999;
}
.dua img{
    width:35px;
}
/* JUDUL */
.tiga{
    width:100%;
    background:rgb(219,231,240);
    margin-top:80px;
    padding:10px;
    position:relative;
}
.judul h2{
    text-align:center;
    font-size:1rem;
    font-weight:800;
}
/* NAVIGASI */
.navigasi{
    margin-top:10px;
    display:flex;
    justify-content:flex-end;
}
.kembali{
    padding:8px 15px;
    border:1px solid black;
    border-radius:20px;
    background:white;
    font-size:12px;
}
.kembali a{
    text-decoration:none;
    color:black;
}
/* CONTENT */
.empat{
    width:100%;
    padding:10px;
}
/* CARD RIWAYAT */
.kotak{
    width:100%;
    background:white;
    border-radius:10px;
    margin-bottom:8px;
    padding:2px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:3px;
    box-shadow:0 2px 5px rgba(0,0,0,0.1);
    flex-wrap:wrap;
}
.urut_pembelian{
    font-weight:bold;
    font-size:10px;
    width:10px;
}
.tanggal_pembelian,
.status_pembelian,
.harga_pembelian{
    font-size:10px;
    flex:1;
}
.status_pembelian{
    text-transform:capitalize;
    text-align:center;
}
.harga_pembelian{
    font-size: 9px;
    font-weight:bold;
    color:#6a376c;
}
.harga{
    display:flex;
    justify-content:center;
    align-items:center;
}
.status{
    padding:6px 12px;
    background:#f1f1f1;
    border-radius:8px;
    border:1px solid #ccc;
}
.status a{
    text-decoration:none;
    color:blue;
    font-size:10px;
    font-weight:bold;
}
.aksi{
    display:flex;
    align-items:center;
    justify-content:center;
    background-color: rgb(189, 248, 189);
    border-radius:8px;
}
.icon_status img{
    width:28px;
    height:28px;
}
/* TABLET */
@media screen and (max-width:768px){

    .namadepan{
        font-size:20px;
    }

    .namabelakang{
        font-size:14px;
    }

    .judul h2{
        font-size:18px;
    }

    .kotak{
        gap:8px;
    }

    .tanggal_pembelian,
    .status_pembelian,
    .harga_pembelian{
        font-size:12px;
    }
}

/* ANDROID */
/* @media screen and (max-width:480px){

    .satu{
        height:75px;
    }

    .namadepan{
        font-size:20px;
    }

    .namabelakang{
        font-size:15px;
    }

    .bingkai{
        width:42px;
        height:42px;
    }

    .dua{
        height:60px;
    }

    .dua img{
        width:30px;
    }

    .judul h2{
        font-size:15px;
    }

    .kotak{
        flex-direction:column;
        align-items:flex-start;
    }

    .tanggal_pembelian,
    .status_pembelian,
    .harga_pembelian{
        width:100%;
        font-size:10px;
    }

    .harga,
    .aksi{
        width:100%;
        justify-content:flex-start;
    }

    .status{
        margin-top:5px;
    }

    .icon_status{
        margin-top:5px;
    }
} */