/* Main Styles */
body {
    background-color: #f5f5f5;
}

.card {
    border-radius: 10px;
    overflow: hidden;
}

.card-header {
    padding: 1.25rem;
}

/* Terminal-like output */
.terminal-output {
    background-color: #2d2d2d;
    color: #f0f0f0;
    padding: 15px;
    border-radius: 5px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    max-height: 300px;
    overflow-y: auto;
    white-space: pre-wrap;
}

.terminal-output div {
    padding: 3px 0;
}

/* Progress Steps */
.progress-steps {
    margin: 40px 0;
}

.step {
    display: flex;
    margin-bottom: 20px;
    position: relative;
}

.step:not(:last-child):after {
    content: '';
    position: absolute;
    left: 20px;
    top: 45px;
    height: calc(100% - 25px);
    width: 2px;
    background-color: #dee2e6;
    z-index: 0;
}

.step.completed:after {
    background-color: #28a745;
}

.step.in-progress:after {
    background-color: #17a2b8;
}

.step.waiting:after {
    background-color: #ffc107;
}

.step.failed:after {
    background-color: #dc3545;
}

.step-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #dee2e6;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
    z-index: 1;
}

.step.completed .step-icon {
    background-color: #28a745;
    color: white;
}

.step.in-progress .step-icon {
    background-color: #17a2b8;
    color: white;
}

.step.waiting .step-icon {
    background-color: #ffc107;
    color: #212529;
}

.step.failed .step-icon {
    background-color: #dc3545;
    color: white;
}

.step-content {
    flex: 1;
}

.step-content h5 {
    margin-bottom: 5px;
}

/* Important Info Sections */
#admin-consent-section,
#device-code-section {
    border-left-width: 5px;
}

/* Summary Section */
#setup-summary {
    border-left-width: 5px;
}

/* Form Styles */
input[readonly] {
    background-color: #f8f9fa;
    cursor: default;
} 