

.shortcuts .shortcut-form {
    background: #dff2ed;
    border-radius: 0;
    padding: 30px;
    margin-bottom: 40px;
    border: 3px solid #7ba099;
}

.shortcuts label {
    display: block;
    margin-bottom: 15px;
    font-weight: 700;
    color: #2a3547;
    font-size: 1.2rem;
}

/* Action Type Tiles */
.shortcuts .action-tiles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.shortcuts .action-tile {
    position: relative;
    background: white;
    border: 3px solid #7ba099;
    border-radius: 0;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.shortcuts .action-tile:hover {
    background: #f0f9f5;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(123, 160, 153, 0.3);
}

.shortcuts .action-tile.selected {
    background: #7ba099;
    color: white;
    border-color: #2a3547;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(42, 53, 71, 0.3);
}

.shortcuts .action-tile input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.shortcuts .action-icon {
    font-size: 2rem;
    margin-bottom: 8px;
    display: block;
}

.shortcuts .action-name {
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1.2;
}

.shortcuts input[type="text"] {
    width: 100%;
    padding: 15px;
    border: 3px solid #7ba099;
    border-radius: 0;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
}

.shortcuts input[type="text"]:focus {
    outline: none;
    border-color: #2a3547;
    box-shadow: 0 0 0 3px rgba(123, 160, 153, 0.2);
}

.shortcuts .key-input {
    background: #fff;
    border: 3px dashed #7ba099;
    text-align: center;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    color: #2a3547;
    cursor: pointer;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shortcuts .key-input:hover {
    border-color: #2a3547;
    background: #f0f9f5;
}

.shortcuts .key-input.recording {
    border-color: #e74c3c;
    background: #ffeaea;
    animation: pulse 1s infinite;
}

.shortcuts .shortcuts-list {
    background: white;
    border-radius: 0;
    padding: 30px;
    border: 3px solid #7ba099;
}

.shortcuts .shortcut-keys {
    font-family: 'Courier New', monospace;
    background: #2a3547;
    color: white;
    padding: 10px 15px;
    border-radius: 0;
    font-weight: bold;
    text-align: center;
    font-size: 14px;
}


.shortcuts .warning {
    background: #ffeaea;
    border: 3px solid #e74c3c;
    color: #c0392b;
    padding: 20px;
    border-radius: 0;
    margin: 20px 0;
    display: none;
    font-weight: 600;
}

.shortcuts .reserved-keys {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 0;
    margin-bottom: 30px;
    border: 3px solid #2a3547;
}

.shortcuts .reserved-keys h4 {
    color: #2a3547;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.shortcuts .reserved-keys-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
}

.shortcuts .reserved-key {
    background: #2a3547;
    color: white;
    padding: 8px 12px;
    border-radius: 0;
    font-size: 12px;
    font-family: 'Courier New', monospace;
    text-align: center;
    font-weight: bold;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .shortcuts.wizard-container.wizard-container {
        padding: 20px;
    }
    
    .shortcuts .wizard-title {
        font-size: 2rem;
    }
    
    .shortcuts .action-tiles {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }
    
    .shortcuts .shortcut-item {
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: center;
    }
    
    .shortcuts .reserved-keys-list {
        grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
    }
}