/* Migration Tool — site styles */

body {
    background-color: #f4f6f9;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* Card headers */
.card-header.bg-primary {
    background-color: #0d6efd !important;
}

/* Log output */
.log-output {
    background: #1e1e2e;
    color: #cdd6f4;
    font-family: "Cascadia Code", "Fira Code", "Consolas", monospace;
    font-size: 0.82rem;
    line-height: 1.5;
    min-height: 200px;
    max-height: 400px;
    overflow-y: auto;
    white-space: pre-wrap;
    word-break: break-word;
    border-radius: 0 0 0.375rem 0.375rem;
}

/* Scroll to bottom animation */
.log-output-scroll {
    scroll-behavior: smooth;
}

/* Submit button */
#startBtn {
    font-size: 1.1rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
}

#startBtn:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

/* Results */
#resultsCard {
    border: none;
}

.list-group-item {
    font-size: 0.9rem;
    padding: 0.4rem 0.75rem;
}

/* Warnings */
#warningsList .list-group-item {
    background: #fff8e1;
    border-color: #ffe082;
    color: #7a5800;
}

/* Upload zone */
#zipFile {
    cursor: pointer;
}

/* Header */
h1.display-5 {
    color: #1a1a2e;
}

/* Form labels */
.form-label {
    font-weight: 500;
    color: #343a40;
}

/* Responsive */
@media (max-width: 576px) {
    .log-output {
        font-size: 0.75rem;
    }
}
