:root {
    --primary-blue: #2563eb;
    --success-green: #22c55e;
    --gray-light: #f1f5f9;
    --gray-dark: #64748b;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f8fafc;
    margin: 0;
    padding: 20px;
}

.status-container {
    max-width: 600px;
    margin: 0 auto;
}

.search-box {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

input {
    flex: 1;
    padding: 12px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
}

button {
    padding: 12px 24px;
    background: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.card {
    background: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.hidden { display: none; }

/* Progress Tracker Styling */
.track-wrapper {
    display: flex;
    justify-content: space-between;
    margin: 40px 0;
    position: relative;
}

.track-wrapper::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    height: 2px;
    background: #e2e8f0;
    z-index: 1;
}

.step {
    position: relative;
    z-index: 2;
    text-align: center;
    font-size: 0.75rem;
    color: var(--gray-dark);
}

.node {
    width: 20px;
    height: 20px;
    background: white;
    border: 2px solid #cbd5e1;
    border-radius: 50%;
    margin: 0 auto 8px;
}

.step.completed .node {
    background: var(--success-green);
    border-color: var(--success-green);
}

.step.active .node {
    border-color: var(--primary-blue);
    background: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.2);
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid #f1f5f9;
    padding-top: 20px;
}

.savings-text {
    color: var(--success-green);
    font-weight: bold;
}