﻿.wizard {
    max-width: 100%;
    margin: auto;
}

/* Progress bar */
.progress-bar-container {
    background: #eee;
    border-radius: 5px;
    height: 20px;
    margin-bottom: 20px;
    overflow: hidden;
}

.progress-bar {
    height: 20px;
    width: 0%;
    transition: width 0.3s;
}

/* Step tracker */
.steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    list-style: none;
    padding: 0;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
}

    .step.completed {
        color: #FFC107;
        font-weight: bold;
    }

    .step.current {
        color: grey;
        font-weight: bold;
    }

.step-content {
    min-height: 70vh;
    height: 70vh;
    max-height: 70vh;
}

/* Step content */
.step-pane {
    display: none;
    /*  border: 1px solid #ccc; */
    padding: 5px;
    margin-bottom: 20px;
    /* min-height: 100%; */
    min-height: 70vh;
    height: 70vh;
}

    .step-pane.active {
        display: block;
    }

/* Navigation */
.wizard-nav {
    display: flex;
    justify-content: space-between;
}

.process-btn {
    padding: 10px 20px;
    cursor: pointer;
    height: 42px;
    width: 90px;
}

.card {
    padding: 16px;
    border: 1px solid #ddd;
    border-radius: 12px;
    margin-bottom: 16px;
}

.result-container {
    display: flex;
    flex-direction: column;
    height: 65vh;
}

.chart-section {
    flex: 0 0 60%; /* 60% of parent height */
    width: 100%;
    position: relative;
    overflow: hidden;
}


.table-section {
    flex: 0 0 20%; /* 20% of parent height */
    overflow-y: auto;
}


/* Hide less important columns on smaller screens */
@media screen and (max-width: 900px) {
    .col-4 {
        display: none;
    }
    /* Hide Address */
}


/* Make the arc smaller on small screens */
@media (max-width: 768px) {
    .chart-section {
        flex: 0 0 50%; /* 50% of parent height */
        width: 100%;
        position: relative;
        overflow: hidden;
    }


    .table-section {
        flex: 0 0 25%; /* 25% of parent height */
        overflow-y: auto;
    }
}



