        :root {
            --primary-color: #4361ee;
            --secondary-color: #3f37c9;
            --success-color: #4cc9f0;
            --warning-color: #f72585;
            --light-color: #f8f9fa;
        }
        
        body {
            background-color: #f5f7fb;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            padding-bottom: 80px;
            
        }
        


        .mobile-header {
            color: #2c3e50;
            padding: 16px;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .mobile-header h1 {
            font-size: 1.4rem;
            margin: 0;
            font-weight: 600;
        }
        
        .card {
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            margin-bottom: 16px;
            border: none;
        }
        
        .card-header {
            background-color: white;
            border-bottom: 1px solid #eaeaea;
            font-weight: 600;
            padding: 14px 16px;
            border-radius: 12px 12px 0 0 !important;
            color: var(--primary-color);
        }
        
        .card-body {
            padding: 16px;
        }
        
        .search-highlight {
            background-color: #e8f4fc;
            border-radius: 10px;
            padding: 12px;
            margin-bottom: 16px;
        }
        
        .btn-primary {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border: none;
            border-radius: 8px;
            padding: 10px 16px;
            font-weight: 500;
            width: 100%;
        }
        
        .btn-danger {
            background: linear-gradient(135deg, #ff6b6b, #ee5a52);
            border: none;
            border-radius: 6px;
            padding: 6px 12px;
            font-size: 0.85rem;
        }
        
        .form-control {
            border-radius: 8px;
            padding: 10px 12px;
            border: 1px solid #ddd;
        }
        
        .form-label {
            font-weight: 500;
            margin-bottom: 6px;
            color: #444;
        }
        
        .time-badge {
            background-color: #eef2ff;
            color: var(--primary-color);
            padding: 4px 8px;
            border-radius: 6px;
            font-size: 0.85rem;
            font-weight: 500;
        }
        
        .reservation-item {
            border-bottom: 1px solid #f0f0f0;
            padding: 12px 0;
        }
        
        .reservation-item:last-child {
            border-bottom: none;
        }
        
        .alert {
            border-radius: 10px;
            border: none;
            padding: 12px 16px;
        }
        
        .table-responsive {
            border-radius: 10px;
        }
        
        table {
            margin-bottom: 0;
        }
        
        th {
            font-weight: 600;
            color: #555;
            font-size: 0.9rem;
            padding: 12px 8px !important;
        }
        
        td {
            padding: 12px 8px !important;
            vertical-align: middle;
        }
        
        .icon-wrapper {
            font-size: 1.1rem;
            color: var(--primary-color);
            vertical-align: middle;
        }
        
        .mobile-actions {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: white;
            padding: 12px 16px;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
            z-index: 1000;
        }
        
        @media (max-width: 576px) {
            .table thead {
                display: none;
            }
            
            .table tr {
                display: block;
                margin-bottom: 16px;
                border-radius: 8px;
                box-shadow: 0 2px 8px rgba(0,0,0,0.05);
                background: white;
            }
            
            .table td {
                display: block;
                text-align: right;
                padding: 10px 12px !important;
                position: relative;
                border-bottom: 1px solid #f5f5f5;
            }
            
            .table td:last-child {
                border-bottom: none;
            }
            
            .table td::before {
                content: attr(data-label);
                position: absolute;
                left: 12px;
                top: 50%;
                transform: translateY(-50%);
                font-weight: 600;
                color: #555;
                font-size: 0.85rem;
            }
            
            .btn-cancelar {
                width: 100%;
                justify-content: center;
            }
        }