* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    background: #1e1e1e;
    color: #d4d4d4;
    padding: 30px;
    line-height: 1.6;
}

.header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.header h1 {
    font-size: 2em;
    margin-bottom: 10px;
}

.header .subtitle {
    opacity: 0.9;
    font-size: 1.1em;
}

.section {
    background: #252526;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid #3e3e42;
}

.section h2 {
    color: #4ec9b0;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #3e3e42;
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 0.85em;
    font-weight: 600;
    margin-left: auto;
}

.status-success {
    background: #28a745;
    color: white;
}

.status-error {
    background: #dc3545;
    color: white;
}

.key-value {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 15px;
    padding: 10px 0;
    border-bottom: 1px solid #3e3e42;
}

.key-value:last-child {
    border-bottom: none;
}

.key {
    color: #9cdcfe;
    font-weight: 600;
}

.value {
    color: #ce9178;
    word-break: break-all;
}

.table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.table th, .table td {
    text-align: left;
    padding: 12px;
    border-bottom: 1px solid #3e3e42;
}

.table th {
    background: #1e1e1e;
    color: #4ec9b0;
    font-weight: 600;
}

.table tr:hover {
    background: #2d2d30;
}

.back-link {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.2s;
}

.back-link:hover {
    transform: translateY(-2px);
}

.error-message {
    background: #5a1a1a;
    border-left: 4px solid #dc3545;
    padding: 15px;
    border-radius: 5px;
    margin-top: 10px;
}

