* { box-sizing: border-box; }
body {
font-family: system-ui, "Segoe UI", sans-serif;
background: #f1f5f9;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.shortcut-container {
background: white;
padding: 30px;
border-radius: 16px;
box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
display: flex;
flex-direction: column;
gap: 16px;
width: 300px;
}
.shortcut {
display: flex;
justify-content: space-between;
align-items: center;
font-size: 0.95rem;
color: #475569;
}
kbd {
background-color: #f8fafc;
border: 1px solid #cbd5e1;
border-bottom-width: 3px;
border-radius: 6px;
box-shadow: 0 1px 2px rgba(0,0,0,0.05);
color: #1e293b;
display: inline-block;
font-family: inherit;
font-size: 0.85rem;
font-weight: 600;
line-height: 1;
padding: 4px 8px;
white-space: nowrap;
}
.keys {
display: flex;
align-items: center;
gap: 4px;
font-size: 0.9rem;
color: #94a3b8;
}