.step {
    display: none;
}

.step.active {
    display: block;
}

.card-body img {
    max-width: 300px;
    height: auto;
    float: right;
    margin: 0 0 1rem 1rem;
    border: 1px solid #dee2e6;
}

/* Radio button styling */
.form-check {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.form-check-input {
    position: absolute;
    margin-left: -2.5rem;
    margin-top: 0.25rem;
}

.form-check-label {
    margin-bottom: 0;
    cursor: pointer;
    font-weight: normal;
    padding-left: 2rem;
    line-height: 1.5;
}

/* Custom radio button appearance */
.form-check-input {
    width: 1.25rem;
    height: 1.25rem;
}

.form-check-input:checked {
    background-color: #007bff;
    border-color: #007bff;
}

.check {
    list-style: none;
    padding-left: 0;
}

.check li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.check li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #007bff;
}

.navigation-buttons {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #dee2e6;
}

/* Print styles */
@media print {
    body * {
        visibility: hidden;
    }
    
    .step.printing, .step.printing * {
        visibility: visible;
    }
    
    .step.printing {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
    }
    
    .navigation-buttons {
        display: none !important;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .card-body img {
        float: none;
        display: block;
        margin: 0 auto 1rem auto;
        max-width: 100%;
    }
    
    .navigation-buttons .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}
