.photo-rewards-progress {
    margin: 20px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 5px;
}

.progress-bar-container {
    margin: 20px 0;
}

.progress-bar {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.progress-bar::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 4px;
    background: #e0e0e0;
    z-index: 1;
}

.progress-step {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
}

.step-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-weight: bold;
    color: #999;
}

.progress-step.active .step-icon {
    background: #0073aa;
    border-color: #0073aa;
    color: #fff;
}

.step-label {
    font-size: 12px;
    color: #666;
}

.progress-step.active .step-label {
    color: #0073aa;
    font-weight: bold;
}

.progress-info {
    margin-top: 20px;
}

.progress-info p {
    margin: 5px 0;
}

.claim-button-container {
    margin: 20px 0;
    text-align: center;
}

.claim-message {
    margin-top: 15px;
    padding: 10px;
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 4px;
    color: #155724;
    display: none;
}

.photo-rewards-product-message {
    margin: 15px 0;
    padding: 10px;
    background: #e7f5fe;
    border-left: 4px solid #00a0d2;
}