#apb-intake-form {
    max-width: 600px;
    position: relative;
}

.apb-intro{
	padding-bottom:20px !important;
}
.apb-step {
    min-height: 420px; /* Choose a height that fits all steps */
    transition: opacity 0.3s ease-in-out;
    opacity: 0;
    display: none;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
}
.apb-step.active {
    display: block;
    opacity: 1;
}
.apb-step.active label{
	color:black;
}

input, textarea, select {
    width: 100%;
    margin-bottom: 10px;
    padding: 8px;
}
button {
    background-color:rgb(0, 123, 255);
    border:4px solid rgb(0, 123, 255);
    border-radius:5px;
    color:white;
    cursor:pointer;
    font-size:16px;
    padding:14px;
    margin-right: 10px;
}
.prev-btn{
	margin-bottom:8px;
}
#unit_range, #occupancy_rate, #unit_goal, #waitlist_email, #top_goals, #report_format, #focus_areas, #revenue_goal, #nightly_rate{
	border:2px solid black;
	margin-bottom:20px;
	padding:8px;
}

/* Checkbox group layout: flex-wrap row, wrap at group level not label level */
.apb-checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 12px;
}

.apb-checkbox-group label {
    display: flex;
    align-items: center;
    white-space: nowrap;
    font-size: 14px;
    padding: 4px 8px;
    background: #f0f0f0;
    border-radius: 4px;
}

.apb-checkbox-group input[type="checkbox"] {
    margin-right: 6px;
}
#apb-loading {
    display: flex;
    padding: 20px;
}

.apb-spinner {
    width: 24px;
    height: 24px;
    border: 3px solid #ccc;
    border-top: 3px solid #333;
    border-radius: 50%;
    animation: apb-spin 0.8s linear infinite;
    margin: 20px 0 auto;
}

@keyframes apb-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#unit-warning p{
	background: rgba(255,0,0,0.65);
	color:white;
	padding:8px;
	margin-bottom:20px;
}
#apb-form-message{
	color:white;
	margin-top:20px;
	padding:8px 0 0;
}
