/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

  .ride-list-container {
            margin: 20px 0;
            padding: 20px;
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        
        .table-controls {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
            padding: 15px;
            background: #f8f9fa;
            border-radius: 5px;
            margin-bottom: 20px;
        }
        
        .dataTables_wrapper {
            margin-top: 20px;
        }
        
        .dataTables_wrapper .dt-buttons {
            margin-bottom: 15px;
        }
        
        .dataTables_wrapper .dt-buttons .button {
            margin-right: 5px;
            margin-bottom: 5px;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }
        
        .dt-button .dashicons {
            font-size: 16px;
            width: 16px;
            height: 16px;
        }
        
        table.dataTable tbody tr.selected {
            background-color: #e8f4fc;
        }
        
        table.dataTable tbody tr:hover {
            background-color: #f5f5f5;
        }
        
        .action-buttons {
            display: flex;
            gap: 5px;
        }
        
        .button-small {
            padding: 3px 8px;
            font-size: 12px;
            line-height: 1.5;
        }
        
        .button-danger {
            background: #d63638;
            border-color: #d63638;
            color: white;
        }
        
        .button-danger:hover {
            background: #b32d2e;
            border-color: #b32d2e;
            color: white;
        }
        
        .ride-status {
            padding: 3px 8px;
            border-radius: 3px;
            font-size: 12px;
            font-weight: 600;
        }
        
        .status-confirmed {
            background: #d1fae5;
            color: #065f46;
        }
        
        .status-cancelled {
            background: #fee2e2;
            color: #991b1b;
        }
        
        .status-pending {
            background: #fef3c7;
            color: #92400e;
        }
        
        .contact-info {
            font-size: 13px;
            line-height: 1.4;
        }
        
        .contact-info .email {
            color: #666;
            font-size: 12px;
        }
        
        /* Modal Styles */
        .ride-modal {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: #fff;
            padding: 30px;
            box-shadow: 0 0 20px rgba(0,0,0,0.3);
            z-index: 10000;
            border-radius: 8px;
            min-width: 400px;
            max-width: 500px;
        }
        
        .modal-content {
            max-height: 80vh;
            overflow-y: auto;
        }
        
        .modal-buttons {
            margin-top: 20px;
            text-align: right;
        }
        
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 9999;
            backdrop-filter: blur(2px);
        }
        
        .form-group {
            margin-bottom: 15px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: 600;
        }
        
        .wide-input {
            width: 100%;
            padding: 8px;
            border: 1px solid #ddd;
            border-radius: 4px;
            box-sizing: border-box;
        }
        
        @media (max-width: 768px) {
            .table-controls {
                flex-direction: column;
                align-items: stretch;
            }
            
            .table-controls button {
                width: 100%;
                margin-left: 0 !important;
                margin-bottom: 5px;
            }
            
            .action-buttons {
                flex-direction: column;
            }
            
            .ride-modal {
                width: 95%;
                min-width: unset;
                padding: 20px;
            }
        }