.spr-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
}

.spr-form-header {
    text-align: center;
    margin-bottom: 30px;
}

.spr-form-header h3 {
    color: #333;
    margin-bottom: 10px;
}

.spr-complete {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    padding: 20px;
    border-radius: 4px;
    text-align: center;
    color: #155724;
}

.spr-field {
    margin-bottom: 20px;
}

.spr-field label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.spr-field select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.spr-field select:focus {
    border-color: #007cba;
    outline: none;
}

.spr-form-submit {
    margin-top: 30px;
    text-align: center;
}

.spr-submit-btn {
    background: #007cba;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
}

.spr-submit-btn:hover {
    background: #005a87;
}

.spr-dependent-field {
    transition: all 0.3s ease;
}