/* Wizard Container */
.wizard-container {
    /* max-width: 1200px; */
    margin: 0 auto 2rem auto;
}

/* Wizard Steps Navigation */
.wizard-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0; /* Remove margin, now part of the content block */
    padding: 0;
    list-style: none;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-bottom: none;
    border-radius: 0.5rem 0.5rem 0 0;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.wizard-steps button {
    flex: 1;
    padding: 1rem;
    border: none;
    border-right: 1px solid #dee2e6;
    background: #f8f9fa;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #6c757d;
}

.wizard-steps button:last-child {
    border-right: none;
}

/* REMOVED CHEVRON */
.wizard-steps button:not(:last-child)::after {
    content: none;
}

.wizard-steps button.btn-primary {
    background-color: #115ba4;
    color: white;
}

.wizard-steps button.btn-success {
    background-color: #198754;
    color: white;
}

.wizard-steps button.btn-secondary {
    background-color: #f8f9fa;
    color: #6c757d;
}

.wizard-steps button:disabled {
    cursor: not-allowed;
    background-color: #e9ecef;
    color: #adb5bd;
}

.wizard-steps button:hover:not(:disabled):not(.btn-primary):not(.btn-success) {
    background-color: #e2e6ea;
}

/* Wizard Content Area */
.wizard-content {
    min-height: 400px;
    padding: 1.5rem;
    background-color: white;
    border: 1px solid #dee2e6;
    border-top: none;
    border-radius: 0 0 0.5rem 0.5rem;
}

.wizard-navigation {
    padding: 1.25rem;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-top: none;
    border-radius: 0 0 .5rem .5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


/* Site and Building Containers */
.site-container {
    background-color: #f8f9fa;
}

.site-header {
    margin-bottom: 0;
    font-size: 1.25rem;
}

.building-container {
    background-color: #fff;
    border-color: #17a2b8 !important;
}

/* Loading States */
.spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: 0.2em;
}

/* Invoice Details */
.invoice-details {
    max-width: 800px;
    margin: 0 auto;
}

.payment-section {
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 0.5rem;
    margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .wizard-steps {
        flex-direction: column;
    }

    .wizard-steps button {
        border-right: none;
        border-bottom: 1px solid #dee2e6;
    }

    .wizard-steps button:last-child {
        border-bottom: none;
    }
}
