/* Realtor Integration Styles */

.buy-option-card {
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.buy-option-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.buy-option-card.selected,
.buy-option-card.border-primary {
    border-color: #0d6efd;
    background-color: rgba(13, 110, 253, 0.05);
}

.bg-primary-light {
    background-color: rgba(13, 110, 253, 0.05);
}

.realtor-credentials-section {
    border-top: 1px solid #dee2e6;
}

#realtor-status-badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
}

#buyFlowSelector {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

#toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1100;
}

@media (max-width: 768px) {
    .buy-option-card {
        margin-bottom: 1rem;
    }

    .realtor-credentials-section .row {
        gap: 0.5rem;
    }
}
