.status {
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    }

.status-diproses {
    background-color: #fff3cd;
    color: #856404;
    }

.status-diperjalanan {
    background-color: #cfe2ff;
    color: #084298;
    }

.status-selesai {
    background-color: #d1e7dd;
    color: #0f5132;
    }

.status-lain {
    background-color: #f8d7da;
    color: #842029;
    }

.status-timeline {
    display: flex;
    justify-content: space-between;
    /* padding: 19px 0; */
    position: relative;
    }

.status-timeline::before {
    content: '';
    position: absolute;
    top: 17px;
    left: 0;
    right: 0;
    height: 3px;
    background: #e0e0e0;
    z-index: 0;
    }

.timeline-item {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
    }

.timeline-icon {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #999;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 10px;
    border: 3px solid white;
    }

.timeline-item.completed .timeline-icon {
    background: #198754;
    color: white;
    }

.timeline-icon.bg-danger {
    background: #dc3545 !important;
    color: white !important;
    }

.timeline-content strong {
    display: block;
    font-size: 0.9rem;
    margin: 0px 0px 0px 20px;
    color: rgb(6, 39, 76);
    }

.timeline-content small {
    display: block;
    color: #6c757d;
    font-size: 0.8rem;
    }

.riwayat-box {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.2s;
    }

.riwayat-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }

.riwayat-header {
    background: #084298;
    color: white;
    padding: 20px 25px;
    }

.riwayat-section {
    padding: 20px 25px;
    }

.information-title {
    font-size: 2.5rem !important;
    font-weight: 700;
    color: #004d88 !important;
    margin-bottom: 1rem;
    letter-spacing: -0.3px;
    font-family: 'Bebas Neue', sans-serif;
    }

.riwayat-section label {
    font-weight: 600;
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 5px;
    }

.riwayat-section p {
    color: #333;
    font-size: 0.95rem;
    margin-bottom: 0;
    }

.table-container {
    overflow-x: auto;
    }

.table-peminjaman {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    }

.table-peminjaman thead {
    background: #f8f9fa;
    }

.table-peminjaman th {
    padding: 12px;
    text-align: left;
    font-weight: 600;
    color: #495057;
    font-size: 0.85rem;
    border-bottom: 2px solid #dee2e6;
    }

.table-peminjaman td {
    padding: 12px;
    border-bottom: 1px solid #e9ecef;
    font-size: 0.9rem;
    }

.table-peminjaman tbody tr:hover {
    background-color: #f8f9fa;
    }
