* { box-sizing: border-box; margin: 0; padding: 0; }
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: #0f1419;
    color: #e6e6e6;
    padding: 24px;
    line-height: 1.5;
}
header {
    background: #1a2332;
    border-radius: 12px;
    padding: 24px 32px;
    margin-bottom: 24px;
    border: 1px solid #2a3441;
}
header h1 {
    font-size: 28px;
    margin-bottom: 4px;
}
.subtitle {
    color: #8b95a5;
    font-size: 13px;
    margin-bottom: 20px;
}
.subtitle a { color: #5a9cf8; text-decoration: none; }
.header-info {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    align-items: center;
}
.info-block {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.info-block .label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6b7480;
}
.info-block .value {
    font-size: 14px;
    color: #cdd5e0;
    font-family: "Courier New", monospace;
}
.actions {
    margin-left: auto;
    display: flex;
    gap: 8px;
}
button {
    background: #2a3441;
    color: #e6e6e6;
    border: 1px solid #3a4451;
    border-radius: 8px;
    padding: 10px 18px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.15s ease;
}
button:hover { background: #3a4451; }
button:active { transform: translateY(1px); }
button.small { padding: 4px 10px; font-size: 12px; }
button.danger { background: #5a3030; border-color: #7a4040; }
button.danger:hover { background: #7a4040; }

main section {
    background: #1a2332;
    border-radius: 12px;
    padding: 24px 32px;
    margin-bottom: 24px;
    border: 1px solid #2a3441;
}
main h2 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #f0f0f0;
}
.hint {
    color: #8b95a5;
    font-size: 13px;
    margin-bottom: 12px;
}
table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}
thead th {
    text-align: left;
    padding: 12px 8px;
    background: #0f1419;
    border-bottom: 1px solid #2a3441;
    color: #8b95a5;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.5px;
}
tbody tr {
    border-bottom: 1px solid #1f2832;
}
tbody tr:hover { background: #1f2832; }
tbody tr.has-update {
    background: #2a2820;
    border-left: 3px solid #d4a017;
}
tbody tr.protected {
    opacity: 0.5;
}
tbody td {
    padding: 12px 8px;
    vertical-align: middle;
}
.container-name strong {
    font-family: "Courier New", monospace;
    color: #f0f0f0;
    font-size: 12px;
}
.image code {
    font-family: "Courier New", monospace;
    font-size: 11px;
    color: #8b95a5;
    word-break: break-all;
}
.state { white-space: nowrap; }
.digest {
    font-family: "Courier New", monospace;
    font-size: 11px;
    color: #6b7480;
}
.update-yes {
    background: #d4a017;
    color: #000;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 11px;
}
.update-no {
    color: #6b7480;
    font-size: 12px;
}
.update-unknown {
    color: #5a9cf8;
    font-size: 12px;
}
.badge {
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 6px;
    font-weight: 500;
}
.badge.protected { background: #2a3441; color: #8b95a5; }
.badge.no-auto { background: #2a3441; color: #8b95a5; }
.log {
    background: #0a0e13;
    padding: 16px;
    border-radius: 8px;
    font-family: "Courier New", monospace;
    font-size: 11px;
    line-height: 1.6;
    color: #cdd5e0;
    max-height: 400px;
    overflow-y: auto;
    white-space: pre-wrap;
}
@media (max-width: 1100px) {
    table { font-size: 12px; }
    thead th { font-size: 10px; }
}
