#step-indicator .nav-link {
    cursor: default;
}

#step-indicator .nav-link.active {
    background-color: #0d6efd;
    color: #fff;
}

.card {
    border-radius: 12px;
}

.btn {
    border-radius: 999px;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.offer-card {
    background: linear-gradient(180deg, #ffffff, #f8f9fb);
    border: 1px solid #e2e6ea;
    border-radius: 14px;
    padding: 20px 22px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
    animation: fadeInUp 0.35s ease;
}

/* Title */
.offer-title {
    font-size: 17px;
    font-weight: 700;
    color: #0d6efd;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.offer-title::before {
    content: "₹";
    width: 28px;
    height: 28px;
    background: rgba(13, 110, 253, 0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #0d6efd;
}

/* Rows */
.offer-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 10px 0;
    font-size: 14px;
    color: #495057;
    border-bottom: 1px dashed #dee2e6;
}

.offer-row:last-child {
    border-bottom: none;
}

/* Labels */
.offer-row span:first-child {
    color: #6c757d;
    font-weight: 500;
}

/* Values */
.offer-row span:last-child,
.offer-row strong {
    text-align: right;
}

/* Highlight Approved Amount */
.offer-row .amount {
    font-size: 20px;
    font-weight: 800;
    color: #198754;
}

/* Actions */
.offer-actions {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}

.offer-actions .btn-success {
    flex: 2;
    font-weight: 600;
    padding: 10px 14px;
}

.offer-actions .btn-outline-danger {
    flex: 1;
    padding: 10px 14px;
}

/* Disclaimer */
.offer-card small {
    display: block;
    margin-top: 10px;
    font-size: 12px;
    color: #6c757d;
}

/* Mobile adjustments */
@media (max-width: 576px) {
    .offer-card {
        padding: 16px;
    }

    .offer-row {
        flex-direction: column;
        gap: 4px;
    }

    .offer-actions {
        flex-direction: column;
    }

    .offer-actions .btn {
        width: 100%;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-link.disabled {
    pointer-events: none !important;
    cursor: not-allowed !important;
    opacity: 0.6;
}