.stat-card {
    border-radius: 14px;
    height: 100%;
}

.stat-card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 110px; /* hepsi aynı hizada */
}

.stat-icon {
    font-size: 26px;
    margin-bottom: 6px;
}


       .active-order {
    background: linear-gradient(135deg, #0d6efd, #0a58ca);
    border-radius: 20px;
    color: #fff;
    box-shadow: 0 12px 30px rgba(13,110,253,.25);
               animation: pulse 2s infinite;
}

.order-header small {
    opacity: .85;
}

.order-badge {
    background: rgba(255,255,255,.15);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
}

.order-info {
    background: rgba(255,255,255,.12);
    border-radius: 14px;
    padding: 12px 14px;
    margin-bottom: 10px;
}

.order-info i {
    font-size: 16px;
    opacity: .9;
}

.order-actions .btn {
    border-radius: 14px;
    padding: 12px;
    font-size: 15px;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255,255,255,.15); }
    70% { box-shadow: 0 0 0 15px rgba(255,255,255,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

.section-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
}

.delivery-list .delivery-item {
    background: #fff;
    border-radius: 14px;
    padding: 12px 14px;
    margin-bottom: 10px;
    box-shadow: 0 6px 18px rgba(0,0,0,.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform .15s ease, box-shadow .15s ease;
}

.delivery-list .delivery-item:active {
    transform: scale(.98);
}

.delivery-left small {
    opacity: .6;
}

.delivery-amount {
    background: rgba(25,135,84,.12);
    color: #198754;
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
}
