
* {
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f5f7fa;
    padding: 24px;
    margin: 0;
}

.container {
    max-width: 1400px;
    margin: auto;
}

.upload-card,
.result-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 16px;
}

.result-header {
    cursor: pointer;
    font-weight: bold;
    margin-bottom: 10px;
}

.result-body {
    display: none;
}

.result-body.open {
    display: block;
}

.result-layout {
    display: flex;
    gap: 24px;
}

.image-panel img {
    width: 500px;
    border-radius: 8px;
}

.status-pass { color: green; }
.status-fail { color: red; }
.status-review { color: orange; }

.progress-bar {
    height: 8px;
    background: #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #1f77ff;
}