/* ===========================
   TANGKIS BPS LAMPUNG TIMUR
   Modern UI
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI',Tahoma,Geneva,Verdana,sans-serif;
}

body{
    background:#f4f7fb;
    color:#333;
}

/* HEADER */

.header{
    width:100%;
    background:#005baa;
    color:white;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 50px;
    box-shadow:0 3px 10px rgba(0,0,0,.15);
}

.header h1{
    font-size:22px;
    font-weight:bold;
}

.header a{
    color:white;
    text-decoration:none;
    margin-left:15px;
    font-weight:500;
}

.header a:hover{
    color:#ffd54f;
}

/* CONTAINER */

.container{
    width:90%;
    max-width:900px;
    margin:40px auto;
    background:white;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    padding:35px;
}

/* JUDUL */

.container h2{
    text-align:center;
    color:#005baa;
    margin-bottom:30px;
}

/* FORM */

.form-group{
    margin-bottom:18px;
}

label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
}

input,
select,
textarea{
    width:100%;
    padding:13px;
    border:1px solid #d7d7d7;
    border-radius:8px;
    font-size:15px;
    transition:.3s;
}

input:focus,
textarea:focus,
select:focus{
    outline:none;
    border-color:#005baa;
    box-shadow:0 0 8px rgba(0,91,170,.2);
}

/* TEXTAREA */

textarea{
    resize:vertical;
}

/* BUTTON */

.btn{
    background:#005baa;
    color:white;
    border:none;
    padding:13px 30px;
    border-radius:8px;
    cursor:pointer;
    font-size:15px;
    transition:.3s;
}

.btn:hover{
    background:#004080;
    transform:translateY(-2px);
}

.btn-warning{
    background:#ff9800;
}

.btn-warning:hover{
    background:#ef6c00;
}

.btn-success{
    background:#2e7d32;
}

.btn-success:hover{
    background:#1b5e20;
}

/* TRACKING */

.kode{
    margin:25px 0;
    background:#eef6ff;
    border:2px dashed #005baa;
    border-radius:10px;
    text-align:center;
    padding:25px;
    font-size:30px;
    font-weight:bold;
    color:#005baa;
    letter-spacing:3px;
}

/* TABLE */

table{
    width:100%;
    border-collapse:collapse;
    margin-top:20px;
}

table th{
    background:#005baa;
    color:white;
    padding:12px;
}

table td{
    padding:12px;
    border-bottom:1px solid #ddd;
}

table tr:hover{
    background:#f5f8fc;
}

/* STATUS */

.status{
    padding:6px 12px;
    border-radius:20px;
    color:white;
    font-size:13px;
}

.status-menunggu{
    background:#ff9800;
}

.status-proses{
    background:#2196f3;
}

.status-selesai{
    background:#4caf50;
}

.status-ditolak{
    background:#f44336;
}

/* CARD */

.card{
    background:white;
    border-radius:12px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    padding:25px;
    margin-bottom:20px;
}

/* FOOTER */

.footer{
    margin-top:50px;
    text-align:center;
    color:#888;
    padding:20px;
}

/* RESPONSIVE */

@media(max-width:768px){

.header{
    flex-direction:column;
    text-align:center;
    gap:10px;
    padding:20px;
}

.container{
    width:95%;
    padding:20px;
}

table{
    display:block;
    overflow-x:auto;
}

}