﻿@import url('./lab-theme.css');

body { display: block; }

.retry-wrap {
    max-width: 920px;
    width: calc(100% - 32px);
    margin: 12px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 12px;
}

.card {
    border: 1px solid var(--lab-border);
    border-radius: 12px;
    background: var(--lab-surface);
    box-shadow: var(--lab-shadow);
    padding: 14px;
}

.result {
    border: 1px dashed #9fb3c8;
    border-radius: 10px;
    padding: 10px;
    background: #f8fbff;
}

.result.error {
    border-color: #fecaca;
    background: #fee2e2;
    color: #991b1b;
}

.result.success {
    border-color: #bbf7d0;
    background: #dcfce7;
    color: #166534;
}
