.commands-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.command-card {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-left: 4px solid #3498db;
}

.command-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.command-card h4 {
    font-size: 1.8rem;
    margin: 0;
    color: #2c3e50;
    font-weight: 600;
}

.command-card p {
    margin: 0 0 1.5rem 0;
    color: #7f8c8d;
    font-size: 1.1rem;
}

.command-usage {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.usage-item {
    background-color: white;
    border-radius: 8px;
    padding: 1.25rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease;
}

.usage-item h5 {
    margin: 0 0 0.75rem 0;
    font-size: 1.2rem;
    color: #34495e;
    font-weight: 500;
}

.usage-item code {
    display: block;
    background-color: #f8f9fa;
    padding: 0.75rem;
    border-radius: 6px;
    font-family: 'Fira Code', 'Courier New', monospace;
    font-size: 1rem;
    color: #2c3e50;
    margin: 0.5rem 0;
    white-space: pre-wrap;
}

.usage-item code + code {
    margin-top: 0.75rem;
}