.pengajuan-container {
    padding: 0;
    max-width: 100%;
    margin: 0;
}

.pengajuan-title {
    font-size: 36px;
    font-weight: 700;
    color: #1e40af;
    margin: 30px 0;
    text-align: center;
}

.keranjang-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px 40px 40px;
}

.keranjang-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(59, 130, 246, 0.1);
    border-left: 4px solid #3b82f6;
    transition: all 0.3s;
}

.keranjang-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
}

.keranjang-img {
    width: 120px;
    height: 120px;
    background: #e5e7eb;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.keranjang-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.keranjang-img .error-text {
    font-size: 12px;
    color: #6b7280;
    font-weight: 600;
    text-align: center;
}

.keranjang-info {
    flex: 1;
}

.keranjang-info h5 {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 8px 0;
}

.keranjang-info p {
    font-size: 14px;
    color: #64748b;
    margin: 4px 0;
}

.keranjang-info .price {
    font-size: 16px;
    font-weight: 700;
    color: #3b82f6;
    margin-top: 8px;
}

.keranjang-qty {
    width: 100px;
}

.keranjang-qty input {
    text-align: center;
    font-weight: 600;
    color: #1e40af;
    border: 2px solid #3b82f6;
}

.keranjang-qty input:focus {
    border-color: #1e40af;
    box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.25);
}

/* Action Button */
.keranjang-action {
    display: flex;
    align-items: center;
}

.keranjang-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(59, 130, 246, 0.1);
}

.pengajuan-no-data {
    text-align: center;
    padding: 60px 20px;
}

.pengajuan-no-data p {
    font-size: 18px;
    color: #64748b;
    font-weight: 500;
    margin-bottom: 20px;
}
/* ========================================= */
/* MODAL - RINGKASAN BARANG (TANPA BOX COUBLE) */
/* ========================================= */

.ringkasan-barang {
    background: #f8fafc;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.ringkasan-barang h6 {
    color: #1e40af;
    font-weight: 600;
    font-size: 16px;
}

.barang-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.barang-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: white;
    border-radius: 8px;
    border-left: 3px solid #3b82f6;
}

.barang-item strong {
    color: #1e293b;
    font-size: 15px;
}

.barang-item .badge {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    font-size: 12px;
    padding: 6px 12px;
}

.modal-header.bg-primary {
    background: linear-gradient(135deg, #3b82f6, #1e40af) !important;
}

.modal-title i {
    font-size: 20px;
}

.modal-body .alert-info {
    background-color: #dbeafe;
    border-color: #3b82f6;
}

.modal-body .alert-heading {
    color: #1e40af;
    font-weight: 600;
}

.modal-body .list-group-item {
    border-left: 3px solid #3b82f6;
}

.modal-body .list-group-item strong {
    color: #1e293b;
    font-size: 15px;
}

.modal-body .form-label {
    font-weight: 600;
    color: #1e293b;
    font-size: 14px;
}

.modal-body .form-label i {
    font-size: 16px;
}

.modal-body .form-control:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.25);
}

.modal-body .badge.bg-primary {
    background: linear-gradient(135deg, #3b82f6, #1e40af) !important;
}

.modal-footer .btn i {
    font-size: 16px;
}

/* ============================= */
/* INFO PEMINJAM - LIST RAPIH */
/* ============================= */

.info-peminjam {
    background: #f8fafc;
    padding: 18px 20px;
    border-radius: 10px;
    border-left: 4px solid #3b82f6;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.info-item {
    display: flex;
    font-size: 14px;
    line-height: 1.6;
}

/* label */
.info-item strong {
    width: 120px;          
    font-weight: 600;
    color: #1e293b;
    flex-shrink: 0;
}

.info-item strong::after {
    content: " :";
}

/* value */
.info-item span {
    color: #334155;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* mobile */
@media (max-width: 576px) {
    .info-item strong {
        width: 100px;
        font-size: 13px;
    }

    .info-item span {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .keranjang-wrapper {
        padding: 0 20px 40px 20px;
    }

    .keranjang-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .keranjang-img {
        width: 100%;
        height: 200px;
    }

    .keranjang-qty {
        width: 100%;
    }

    .keranjang-action {
        width: 100%;
    }

    .keranjang-action .btn {
        width: 100%;
    }

    .keranjang-footer {
        flex-direction: column;
        gap: 10px;
    }

    .keranjang-footer .btn {
        width: 100%;
    }
}
