/* Gestures Table and Cards Styles */

/* Desktop - table styles already in common-style.css */

/* Mobile - card layout */
@media (max-width: 768px) {
    .gestures-table {
        display: none;
    }
    
    .gestures-cards {
        display: block;
    }
    
    .gesture-card {
        background: white;
        border: 1px solid #ddd;
        border-radius: 8px;
        padding: 15px;
        margin-bottom: 15px;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    
    .gesture-card h4 {
        color: #2196F3;
        margin: 0 0 10px 0;
        font-size: 1.1em;
        border-bottom: 2px solid #2196F3;
        padding-bottom: 5px;
    }
    
    .gesture-action {
        display: flex;
        margin-bottom: 8px;
        line-height: 1.4;
    }
    
    .gesture-action:last-child {
        margin-bottom: 0;
    }
    
    .action-context {
        font-weight: bold;
        color: #555;
        min-width: 140px;
        flex-shrink: 0;
    }
    
    .action-value {
        color: #333;
    }
}

/* Desktop - hide cards */
@media (min-width: 769px) {
    .gestures-table {
        display: table;
    }
    
    .gestures-cards {
        display: none;
    }
}
